您的位置:首页 > 运维架构 > Tomcat

ubuntu安装tomcat5.5

2007-12-19 13:07 441 查看

HOWTO: Install Tomcat 5.5

Installing Tomcat on Ubuntu

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:

Code:
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:

Code:
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:

Code:
gedit ~/.bashrc

Add the following lines to the file:

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:

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

Find the lines:

Code:
<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:

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

Find:

File:/usr/local/tomcat/conf/context.xml
<Context>

Change it to:

File:/usr/local/tomcat/conf/context.xml
<Context reloadable="true">

Save and close.

Step 7 – Enable Invoker Servlet

In terminal type:

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

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

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:/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:

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

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

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:

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

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: