Documentation : Quick start - Apache Geronimo for the impatient
This page last changed on Dec 14, 2005 by hcunico@gmail.com.
If you are in a hurry to have Apache Geronimo up and running right away, this article will provide you with some basic steps for downloading, building (when needed) and run the server in no time. This is clearly not a complete guide so you may want to check the other links in the Apache Geronimo V1 \- Documentation Draft main section for further information. All you need is 5 to 10 minutes and to follow these basic steps. Getting the softwareAt this time you have mainly two options to get the software. You can either download the latest, and stable, major milestone (namely M4, M5...) or get the latest available build (unstable sometimes). The fastest and easiest way is to get the binary directly from the Apache site. Since this article is intended to help you to have Apache Geronimo up and running in the fastest way only the binary download will be covered at this time. PrerequisitesAlthough this installation path is the fastest one, still you will need to install some software before installing Geronimo. J2SE 1.4.2Geronimo is currently using the Sun ORB for RMI so it is required to use SUN JDK. Using a different JDK or different version of the JDK may result in compilation errors. Refer to the following URL for details on how to download and install J2SE 1.4.2: Download binariesDepending on the platform you plan to install and run Apache Geronimo you will select the appropriate installation image. Open a Web browser and access the following URL, there you will find the available packages for download (binaries and source code). http://geronimo.apache.org/downloads.html Select the file compression format compatible with your system (zip, tar, gz) by clicking directly on the link, download it and expand the binary to your hard drive in a new directory. For example in z:/geronimo, from now on this directory will be referenced as <geronimo_home>. The installation of Apache Geronimo is as simple as uncompressing the .zip or .tar files. The next step is to start the server. Start the serverWith Apache Geronimo already installed, open a command line console and change directory to <geronimo_home>/bin. In that directory you will find some script files (.bat and .sh) and three .jar files. If you look at these three files you will find:
To start the server run the following command: java -jar server.jar Alternatively a script is provided, the startup script will also start the server. Once the server is started you should see the following information on the command line console.
To test the Apache Geronimo server you can just point your Web browser to the following URL to test the Geronimo Console. The Geronimo Console is the first application you can test, and the good thing is, it is already deployed. When prompted enter system as the user name and manager as the password. The following figure illustrates the Web based console. At this point you have Apache Geronimo up and running and the time spent has been minimal. The following section will propose a very basic sample JSP and show you how to deploy and run that sample application. Create and deploy a sample applicationA HelloWorld like JSP is almost a default for these basic testing and everybody is already familiar with it. Create a new directory to hold all the application related files. From now on this directory will be referred as <app_home>. Create a plain text file in the <app_home> directory named HelloWorld.jsp and copy the content of the following example. HelloWorld.jsp <html> <head> <jsp:useBean id="datetime" class="java.util.Date"/> <title> Basic HelloWorld JSP </title> </head> <body bgcolor="#909DB8"> <h1> <font face="tahoma" color="white"> Hello world from GERONIMO! </font> </h1> <font face="tahoma" color="white">on ${datetime}</font> </body> </html> Although for such a simple application it is not necessary, you will still create a Geronimo deployment plan so you would get a first view of the deployment plans. Create a directory named WEB-INF inside the <app_home> directory. Create a plain text file in the <app_home>/WEB-INF directory named geronimo-web.xml and copy the content of the following example. Geronimo deployment plan geronimo-web.xml <?xml version="1.0"?> <web-app xmlns="http://geronimo.apache.org/xml/ns/web" xmlns:naming="http://geronimo.apache.org/xml/ns/naming" configId="HelloWorld"> <context-root>/hello</context-root> </web-app> Create a plain text file in the <app_home>/WEB-INF directory named web.xml and copy the content of the following example. web.xml <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"> <welcome-file-list> <welcome-file>HelloWorld.jsp</welcome-file> </welcome-file-list> </web-app> Package the applicationFrom a command line window change directory to <app_home> and run the following command to package the HelloWorld application into a single .war file. jar -cvf HelloWorld.war * This will create a HelloWorld.war file in the <app_home> directory. The next step is to deploy this application. Deploy and test the applicationTo deploy the application you have two options, you can use the Geronimo Console or the command line. For this example you will use the command line option. Change directory to <geronimo_home>/bin and run the following command: java -jar deployer.jar --user system --password manager deploy <app_home>/HelloWorld.war Once the application is successfully deployed you should see the following message:
Test the application by pointing a Web browser to the following URL: SummaryThis article showed you how simple is to have Apache Geronimo up and running. The overall time for getting the server running should be less than five minutes if you have the prerequisite (Java 1.4.2) already installed. Additionally, this article also showed you how to create, deploy and test a very simple JSP in less than five minutes. |
![]() |
Document generated by Confluence on Dec 15, 2005 19:14 |