Installing Tomcat on Ubuntu

http://doc.gwos.org/index.php/Install_tomcat_5.5

Versions:

  • SDK: 1.5
  • JRE: 1.5
  • Tomcat: 5.5

Step 1 – Install JRE and SDK

Use the advice here to install these packages

You can verify that both items were installed corectly, by checking that you get a response when typing in terminal:

file.pngCode:

java -version javac -help


Step 2 – Get tomcat

Download tomcat 5.5 from http://jakarta.apache.org/site/downloads/

In this example I am using jakarta-tomcat-5.5.9.tar.gz

Uncompress the file:

file.pngCode:

tar xvfz jakarta-tomcat-5.5.9.tar.gz


N.B. To make things simpler I also renamed the package to just 'tomcat'. If you do not do this, make sure you adjust these tutorial instructions to the name of your package whenever you see 'tomcat' written.

Step 3 – Add tomcat

Place the uncompressed package in:

/usr/local/

Step 4 – Set JAVA_HOME and CLASSPATH

You need to point out where you installed Java SDK. You will have to edit the file '.bashrc'. Backup this file first!

In terminal type:

file.pngCode:

gedit ~/.bashrc


Add the following lines to the file:

file.png File:~/.bashrc

#Stuff we added to make tomcat go
export JAVA_HOME=/usr/lib/j2sdk1.5-sun/
export CLASSPATH=/usr/local/tomcat/common/lib/jsp-api.jar:/usr/local/tomcat/common/lib/servlet-api.jar


N.B. remember to change the word tomcat to the name of the package you placed in /usr/local.

Save and close. You will have to log out and back in again before these changes take effect.


The next steps are optional. They are for setting tomcat up to be used as a development environment.

Skip to the last step ( Step 8 ) if you just want to start tomcat how it is.

Step 5 – Change default port number

Tomcats default port number is 8080. To change it to 80 or another number do the following.

In terminal type:

file.pngCode:

gedit usr/local/tomcat/conf/server.xml


Find the lines:

file.pngCode:

<Connector port="8080" ... maxThreads="150" minSpareThreads="25" ...


Adjust the port number to 80 (or any other port number you want to use), save and close.

Step 6 – Turn on Servlet reloading

In terminal type:

file.pngCode:

gedit usr/local/tomcat/conf/context.xml


Find:

file.png File:/usr/local/tomcat/conf/context.xml

<Context>


Change it to:

file.png File:/usr/local/tomcat/conf/context.xml

<Context reloadable="true">


Save and close.

Step 7 – Enable Invoker Servlet

In terminal type:

file.pngCode:

gedit usr/local/tomcat/conf/web.xml


Find and uncomment (remove the <-- and --> wrapped around the tags):

file.png File:/usr/local/tomcat/conf/web.xml

<servlet>
<servlet-name>invoker</servlet-name>
<servlet-class>
org.apache.catalina.servlets.InvokerServlet
</servlet-class>
...
</servlet>


Also find and uncomment:

file.png File:/usr/local/tomcat/conf/web.xml

<servlet-mapping>
<servlet-name>invoker</servlet-name>
<url-pattern>/servlet/*</url-pattern>
</servlet-mapping>


Save and close.

Step 8 – Start tomcat

Tomcat should now be ready to run.

In terminal type:

file.pngCode:

sh /usr/local/tomcat/bin/startup.sh


If everything is working fine, you will see the following lines:

file.png File:/usr/local/tomcat/bin/startup.sh

Using CATALINA_BASE: /usr/local/tomcat
Using CATALINA_HOME: /usr/local/tomcat
Using CATALINA_TMPDIR: /usr/local/tomcat/temp
Using JRE_HOME: /usr/lib/j2sdk1.5-sun/


In your browser head to http://localhost/ and test if it is serving. If you didn't change the port number it was serving on, head to http://localhost:8080/

To stop tomcat type:

file.pngCode:

sh /usr/local/tomcat/bin/shutdown.sh



I hope this helped!

If you have any problems, I recommend this site for more details: http://www.coreservlets.com/

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章