Howto: Installing JOnAS from scratch

This guide provides instructions for installing JOnAS from scratch on Unix-compatible systems.

The content is organized into the following steps

  1. JDK 1.4 installation
  2. Ant 1.6 installation
  3. Tomcat 5.0.x installation
  4. Jetty 5.0.x installation
  5. JOnAS installation
  6. Setup

JDK 1.4 installation

Download the binary version of JDK 1.4 from the java Sun web site into the appropriate directory. Launch the executable file:

./j2sdk-1_<version number>-<system>.bin for Unix
./j2sdk-1_<version number>-<system>.sh for Linux
j2sdk-1_<version number>-windows-i586.exe for Windows

Set the JAVA_HOME environment variable and update the path:

export JAVA_HOME=<Installation Directory>
PATH=$JAVA_HOME/bin:$PATH (on Windows: PATH=%JAVA_HOME%/bin;%PATH%)

Ant 1.6 installation

Download the binary version of Ant 1.6 from the Ant Apache web site. Untar or Unzip it into the appropriate directory:

tar -jxvf apache-ant-1.6.x-bin.tar.bz2
(or unzip apache-ant-1.6.x-bin.zip)

Set the ANT_HOME environment variable and update the path:

export ANT_HOME=<Installation Directory>
PATH=$PATH;$ANT_HOME/bin (on Windows: PATH=%ANT_HOME%/bin;%PATH%)

Download bcel-5.x.tar.gz from the Jakarta web site and install bcel-5.x.jar in the directory $ANT_HOME/lib.

Tomcat 5.0.x installation

Download the binary version of Tomcat 5.0.x from the Jakarta Tomcat web site. Untar it into the appropriate directory:

tar -xvf jakarta-tomcat-5.0.x.tar.gz

Set the CATALINA_HOME environment variable:

export CATALINA_HOME=<Installation Directory>
JONAS_BASE directory can be used as CATALINA_BASE: export CATALINA_BASE=$JONAS_BASE
Configuration information for the Realm and users is provided at the Setup process.

Jetty 5.0.x installation

Download the binary version of Jetty 5.0.x from the Jetty web site. Untar it into the appropriate directory:

tar -xvf jetty-5.0.x-all.tar.gz

Set the JETTY_HOME environment variable:

export JETTY_HOME=<Installation Directory>

JOnAS installation

Download the binary version of JOnAS from the ObjectWeb web site.
Choose a location for the JOnAS installation.
Be aware that if you have already installed a previous version of JOnAS in this location, the new installation will overwrite existing files, thus customized configuration files may be lost. Therefore, it is prudent to save these files before starting the installation process.
The installation process consists of untaring the downloaded file.
Change to the directory in which JOnAS is to be installed and untar this file, using
the tar -zxvf jonas.tgz command.
After installing the JOnAS product, set the following environment variable:

export JONAS_ROOT = <Installation Directory>
PATH = $JONAS_ROOT/bin/unix:$PATH

Do an ant install in the JONAS_ROOT directory to unpack the jar files necessary to build jonas.jar and client.jar.

Setup

Before using JOnAS, the following setup activities must be completed:

Compile the examples as follows:
ant install in the directory $JONAS_ROOT/examples

JOnAS installation is now complete. For more information, refer to the JOnAS Documentation.