Home > Blogging > Tomcat 5, Java 6 on CentOS 5.2

Tomcat 5, Java 6 on CentOS 5.2

December 16th, 2008

I’m not very smart on installing packages on Linux, but today I need to configure a Tomcat on a CentOS 5.2. The CentOS 5.2 has Tomcat 5 available as yum package, with gcc-java. But Java gurus tell me to use the original Sun JDK to run Tomcat without problems.

I know that Tomcat can run with a JRE which is a lot smaller, so I started with download the Java JRE 6 Update 11 from here.

I choosed Linux/Multilanguage and accepted the Sun Terms. I downloaded the jre-6u11-linux-i586.bin file wich is an autoinstaller for Linux.

After uploading the file in the /root dir, I did a chmod to make the file executable:

chmod u+x jre-6u11-linux-i586.bin

and then ran it

./jre-6u11-linux-i586.bin

I needed to accept the long legal stuff by Sun, inputing a “yes” at the end of the text (press spacebar many time to reach the end).

I got the jre folder that I have to move into /usr or something. Not really satisfying me. Why not to try with an rpm, always from the Sun download page?

The file is called jre-6u11-linux-i586-rpm.bin. Make it executable, run it (as the previous file), accept the legal stuff and you have an rpm which will be automatically installed.

The JRE will e installed in:

/usr/java/jre1.6.0_11/

Now it’s time form Tomcat 5. I used the version 5.5.26, not the latest 5.5.27: we have problem with some JSP containing XML fragments which wouldn’t compile.

Tomcat 5 can be download from the archives: pick the file apache-tomcat-5.5.26.tar.gz. Moved it on /root I gunzipped it:

gunzip apache-tomcat-5.5.26.tar.gz

and then untared (I know Linux guru, all those thing can e done with a single compact command line, but it take more time to read the man pages compared to run two separate and clear commenads).

tar xvf apache-tomcat-5.5.26.tar

I got the apache-tomcat-5.5.26 folder which I moved to /usr/tomcat. I like the simple things and not the hyper parametric future minded configurations…

mv apache-tomcat-5.5.26 /usr/tomcat

Now I need some script to run Tomcat as a deman, to put in /etc/init.d. I found this page and modified the script to match my path.

Pay attention: I need Tomcat to run on port 80, so I made it to run as root. If you want to make it run as another user (like tomact) but still responding on port 80, either you need to put in front of it Apache or add some (for me) strange rules to iptables.

tomcat deamon linux bash script

The file needed to be copied in /etc/init.d, and then

chown root:root /etc/init.d/tomcat

chmod a+x /etc/init.d/tomcat

To install the script for various runlevels, I ran

/sbin/chkconfig –add tomcat

it will be marked as “on” for runlevel 3, 4, 5 (I’m interest in rulevel 5). To see the configuration of all services, you can run

/sbin/chkconfig –list

On my server Apache was installed and running and I need to stop it to free the port 80. So I marked it as “off” for every runlevel:

/sbin/chkconfig httpd off

and then I stopped it:

/etc/init.d/httpd stop

Now it’s time to configure and then try to run Tomcat. Firstly I changed the configuration

/usr/tomact/server.xml

to make it listen to the port 80. Find the string port=”8080″ and change it to port=”80″. Easy.

To run Tomcat has to be configured with the Java path. Remember we are using a JRE so we need to set the environement variable JRE_HOME (not the JAVA_HOME). I did it creating the file “setenv.sh” in /usr/tocat/bin. This file is used by startup and shutdown scripts, without modify them or the catalina.sh script (this is a good practice for future Tomcat upgrade).

The file content will be:

export JRE_HOME=/usr/java/latest
export CATALINA_PID=/var/run/tomcat.pid

The CATALINA_PID variable force Tomcat to create the pid file of the process, useful to kill it. Note that a shutdown of Tomcat can be done in two way. With the call:

/usr/tomcat/bin/shutdown

the same call made from our deamon script, or

/usr/tomcat/bin/shutdown -force

which make the script to wait a little and if the process doesn’t terminate it will be killed (using the pid). You can modify the deamon script to shutdown with “force” (I do it everytime).

To start and stop Tomcat:

/etc/init.d/tomcat start

/etc/init.d/tomcat stop

xx
Author: Satollo Categories: Blogging Tags:
  1. lv4tech
    June 13th, 2009 at 09:34 | #1

    Super! a lot better than yum. In my case installed both in /opt/

  2. June 21st, 2009 at 08:45 | #2

    Thank you very much! It always make me crazy to install such software in Linux… cause the packages many time are not so clear when installing java, tomcat and friends…

  1. February 19th, 2009 at 17:52 | #1