Apache Tomcat/6.0.18    

Administration      
Console
 

Documentation      
FAQ
Wiki
Geronimo Documentation
Additional Documentation
 

Geronimo Online      
The Geronimo Home Page
Problem Tracking Database
Users Mailing List Archive
Developers Mailing List Archive
Geronimo IRC chat
 

Geronimo Examples      
Geronimo Sample Applications
     

If you're seeing this page via a web browser, it means you've setup
Apache Geronimo™ successfully. Congratulations!

As you may have guessed by now, this is the default home page for Geronimo. If you're seeing this page, and you don't think you should be, then either you're a user who has arrived at new installation of Geronimo, or you're an administrator who hasn't got his/her setup quite right. If you need help setting up or administering Geronimo, see the Geronimo Documentation.

If you'd like to get started configuring Geronimo and the applications and services available in Geronimo, you might want to start with the Geronimo Admin Console (if you have not yet configured this the admin username is "system" with password "manager").

Would you like your application to appear at this URL?
To set the context root for a web application, you can write a Geronimo deployment plan that uses the context-root element to specify the URL prefix used to reach that application. If you specify a context root of "/" then the application will appear at this URL. However, you'll need to stop this small Welcome application first!

Your web deployment plan should look like this, and you can either pack it into the WAR at WEB-INF/geronimo-web.xml or provide it as a separate argument to the deploy tool.

<web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-2.0" 
        xmlns:dep="http://geronimo.apache.org/xml/ns/deployment-1.2">

    <dep:environment>
        <dep:moduleId>
            <dep:groupId>com.MyCompany</dep:groupId>
            <dep:artifactId>MyWebApp</dep:artifactId>
            <dep:version>1.0</dep:version>
        </dep:moduleId>
    </dep:environment>
    <context-root>/</context-root>
</web-app>

Then you can stop this application and deploy yours from the Admin Console or from the command line with a sequence of commands like this:

deploy.[bat|sh] stop org.apache.geronimo.configs/welcome-tomcat/{geronimoVersion}/car
deploy.[bat|sh] deploy MyWebApp-1.0.war

Geronimo mailing lists are available at the Geronimo project web site:

Thanks for using Geronimo!

Powered by Geronimo
  Copyright © 2003-2009 Apache Software Foundation
All Rights Reserved
 

 

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */