tomcat 安装

来自:http://www.davidghedini.com/pg/entry/install_tomcat_7_on_centos

Install Tomcat 7 on CentOS, RHEL, or Fedora

This post will cover installing and basic configuration of Tomcat 7 on CentOS 5.x. or CentOS 6.x

Tomcat 7 implements the JavaServer Pages 2.2 and Servlet 3.0 specifications and a number of new features. The Manager application also has a new look and finer-grain roles and access than 6.x

In this post, we‘ll install Tomcat 7, the new JDK 7, configure Tomcat as a service, create a start/stop script, and (optionally) configure Tomcat to run under a non-root user.

We will also configure basic access to Tomcat Manager and take a quick look at memory management using JAVA_OPTS

Finally, we will look at running Tomcat on port 80 as well as some strategies for running Tomcat behind Apache.

I have just updated this post with Tomcat 7.0.29, the current stable release of Tomcat 7.

If you are using a different release, simply change the file names below accordingly.

To begin, we‘ll need to install the Java Development Kit (JDK) 7

JDK 1.6 is the minimum JDK version for Tomcat 7.

Step 1: Install JDK 1.7

You can download the latest JDK here: http://www.oracle.com/technetwork/java/javase/downloads/index.html

We‘ll install the latest JDK, which is JDK 7, Update 5. The JDK is specific to 32 and 64 bit versions.

My CentOS box is 64 bit, so I‘ll need: jdk-7u5-linux-x64.tar.gz.

If you are on 32 bit, you‘ll need: jdk-7u5-linux-i586.tar.gz

Start by creating a new directory /usr/java:

view plaincopy to clipboardprint?

  1. [[email protected] ~]# mkdir /usr/java

Change to the /usr/java directory we created

view plaincopy to clipboardprint?

  1. [[email protected] ~]# cd /usr/java
  2. [[email protected] java ]#

Download the appropriate JDK and save it to /usr/java directory we created above.

Unpack jdk-7u5-linux-x64.tar.gz in the /usr/java directory using tar -xzf:

view plaincopy to clipboardprint?

  1. [[email protected] java]# tar -xzf jdk-7u5-linux-x64.tar.gz

This will create the directory /usr/java/jdk1.7.0_05. This will be our JAVA_HOME.

We can now set JAVA_HOME and put Java into the path of our users.

To set it for your current session, you can issue the following from the CLI:

view plaincopy to clipboardprint?

  1. [[email protected] java]# JAVA_HOME=/usr/java/jdk1.7.0_05
  2. [[email protected] java]# export JAVA_HOME
  3. [[email protected] java]# PATH=$JAVA_HOME/bin:$PATH
  4. [[email protected] java]# export PATH

To set the JAVA_HOME permanently, however, we need to add below to the ~/.bash_profile of the user (in this case, root). 
We can also add it /etc/profile and then source it to give to all users.

view plaincopy to clipboardprint?

  1. JAVA_HOME=/usr/java/jdk1.7.0_05
  2. export JAVA_HOME
  3. PATH=$JAVA_HOME/bin:$PATH
  4. export PATH

Once you have added the above to ~/.bash_profile, you should log out, then log back in and check that the JAVA_HOME is set correctly.

view plaincopy to clipboardprint?

  1. [[email protected] ~]#  echo $JAVA_HOME
  2. /usr/java/jdk1.7.0_05

Note: If you decided to use JDK 6 rather than 7 as we did above, simply save the JDK 6 bin file to /opt (or another location), then navigate to /usr/java and issue: ‘sh /opt/jdk-6u33-linux-x64.bin‘. This will create a JAVA Home of /usr/java/jdk1.6.0.33 

Step 2: Download and Unpack Tomcat 7.0.29 (or latest)

We will install Tomcat 7 under /usr/share.

Switch to the /usr/share directory:

view plaincopy to clipboardprint?

  1. [[email protected] ~]# cd /usr/share
  2. [[email protected] share ]#

Download apache-tomcat-7.0.29.tar.gz (or the latest version) here

and save it to /usr/share

Once downloaded, you should verify the MD5 Checksum for your Tomcat download using the md5sum command.

view plaincopy to clipboardprint?

  1. [[email protected] share ]# md5sum apache-tomcat-7.0.29.tar.gz
  2. 307076fa3827e19fa9b03f3ef7cf1f3f *apache-tomcat-7.0.29.tar.gz

Compare the output above to the MD5 Checksum provided next to the download link and you used above and check that it matches.

unpack the file using tar -xzf:

view plaincopy to clipboardprint?

  1. [[email protected] share ]# tar -xzf apache-tomcat-7.0.29.tar.gz

This will create the directory /usr/share/apache-tomcat-7.0.29

Step 3: Configure Tomcat to Run as a Service.

We will now see how to run Tomcat as a service and create a simple Start/Stop/Restart script, as well as to start Tomcat at boot.

Change to the /etc/init.d directory and create a script called ‘tomcat‘ as shown below.

view plaincopy to clipboardprint?

  1. [[email protected] share]# cd /etc/init.d
  2. [[email protected] init.d]# vi tomcat

And here is the script we will use.

view plaincopy to clipboardprint?

  1. #!/bin/bash
  2. # description: Tomcat Start Stop Restart
  3. # processname: tomcat
  4. # chkconfig: 234 20 80
  5. JAVA_HOME=/usr/java/jdk1.7.0_05
  6. export JAVA_HOME
  7. PATH=$JAVA_HOME/bin:$PATH
  8. export PATH
  9. CATALINA_HOME=/usr/share/apache-tomcat-7.0.29
  10. case $1 in
  11. start)
  12. sh $CATALINA_HOME/bin/startup.sh
  13. ;;
  14. stop)
  15. sh $CATALINA_HOME/bin/shutdown.sh
  16. ;;
  17. restart)
  18. sh $CATALINA_HOME/bin/shutdown.sh
  19. sh $CATALINA_HOME/bin/startup.sh
  20. ;;
  21. esac
  22. exit 0

The above script is simple and contains all of the basic elements you will need to get going.

As you can see, we are simply calling the startup.sh and shutdown.sh scripts located in the Tomcat bin directory (/usr/share/apache-tomcat-7.0.29/bin).

You can adjust your script according to your needs and, in subsequent posts, we‘ll look at additional examples.

CATALINA_HOME is the Tomcat home directory (/usr/share/apache-tomcat-7.0.29)

Now, set the permissions for your script to make it executable:

view plaincopy to clipboardprint?

  1. [[email protected] init.d]# chmod 755 tomcat

We now use the chkconfig utility to have Tomcat start at boot time. In my script above, I am using chkconfig: 234 20 80. 2345 are the run levels and 20 and 80 are the stop and start priorities respectively. You can adjust as needed.

view plaincopy to clipboardprint?

  1. [[email protected] init.d]# chkconfig --add tomcat
  2. [[email protected] init.d]# chkconfig --level 234 tomcat on

Verify it:

view plaincopy to clipboardprint?

  1. [[email protected] init.d]# chkconfig --list tomcat
  2. tomcat          0:off   1:off   2:on    3:on    4:on    5:off   6:off

Now, let‘s test our script.

Start Tomcat:

view plaincopy to clipboardprint?

  1. [[email protected] ~]# service tomcat start
  2. Using CATALINA_BASE:   /usr/share/apache-tomcat-7.0.29
  3. Using CATALINA_HOME:   /usr/share/apache-tomcat-7.0.29
  4. Using CATALINA_TMPDIR: /usr/share/apache-tomcat-7.0.29/temp
  5. Using JRE_HOME:        /usr/java/jdk1.7.0_05
  6. Using CLASSPATH:       /usr/share/apache-tomcat-7.0.29/bin/bootstrap.jar:/usr/share/apache-tomcat-7.0.29/bin/tomcat-juli.jar

Stop Tomcat:

view plaincopy to clipboardprint?

  1. [[email protected] ~]# service tomcat stop
  2. Using CATALINA_BASE:   /usr/share/apache-tomcat-7.0.29
  3. Using CATALINA_HOME:   /usr/share/apache-tomcat-7.0.29
  4. Using CATALINA_TMPDIR: /usr/share/apache-tomcat-7.0.29/temp
  5. Using JRE_HOME:        /usr/java/jdk1.7.0_05
  6. Using CLASSPATH:       /usr/share/apache-tomcat-7.0.29/bin/bootstrap.jar:/usr/share/apache-tomcat-7.0.29/bin/tomcat-juli.jar

Restarting Tomcat (Must be started first):

view plaincopy to clipboardprint?

  1. [[email protected] ~]# service tomcat restart
  2. Using CATALINA_BASE:   /usr/share/apache-tomcat-7.0.29
  3. Using CATALINA_HOME:   /usr/share/apache-tomcat-7.0.29
  4. Using CATALINA_TMPDIR: /usr/share/apache-tomcat-7.0.29/temp
  5. Using JRE_HOME:        /usr/java/jdk1.7.0_05
  6. Using CLASSPATH:       /usr/share/apache-tomcat-7.0.29/bin/bootstrap.jar:/usr/share/apache-tomcat-7.0.29/bin/tomcat-juli.jar
  7. Using CATALINA_BASE:   /usr/share/apache-tomcat-7.0.29
  8. Using CATALINA_HOME:   /usr/share/apache-tomcat-7.0.29
  9. Using CATALINA_TMPDIR: /usr/share/apache-tomcat-7.0.29/temp
  10. Using JRE_HOME:        /usr/java/jdk1.7.0_05
  11. Using CLASSPATH:       /usr/share/apache-tomcat-7.0.29/bin/bootstrap.jar:/usr/share/apache-tomcat-7.0.29/bin/tomcat-juli.jar

We should review the Catalina.out log located at /usr/share/apache-tomcat-7.0.29/logs/catalina.out and check for any errors.

view plaincopy to clipboardprint?

  1. [[email protected] init.d]# more /usr/share/apache-tomcat-7.0.29/logs/catalina.out

We can now access the Tomcat Manager page at:

http://yourdomain.com:8080 or http://yourIPaddress:8080 and we should see the Tomcat home page.

Step 4: Configuring Tomcat Manager Access.

Tomcat 7 contains a number of changes that offer finer-grain roles.

For security reasons, no users or passwords are created for the Tomcat manager roles by default. In a production deployment, it is always best to remove the Manager application.

To set roles, user name(s) and password(s), we need to configure the tomcat-users.xml file located at $CATALINA_HOME/conf/tomcat-users.xml.

In the case of our installation, $CATALINA_HOME is located at /usr/share/apache-tomcat-7.0.29.

By default the Tomcat 7 tomcat-users.xml file will have the elements between the and tags commented-out. .

New roles for Tomcat 7 offer finer-grained access and The following roles are now available:

manager-gui
manager-status
manager-jmx
manager-script
admin-gu
admin-script.

We can set the manager-gui role, for example as below

:

view plaincopy to clipboardprint?

  1. <tomcat-users>
  2. <role rolename="manager-gui"/>
  3. <user username="tomcat" password="secret" roles="manager-gui"/>
  4. </tomcat-users>

Caution should be exercised in granting multiple roles so as not to under-mind security.

Step 5 (Oprtional): Manage Memory Usage Using JAVA_OPTS.

Getting the right heap memory settings for your installation will depend on a number of factors.

For simplicity, we will set our inital heap size, Xms, and our maximum heap size, Xmx, to the same value of 128 Mb

Simliarly, there are several approaches you can take as to where and how you set your JAVA_OPTS

Again, for simplicity, we will add our JAVA_OPTS memory parameters in our Catalina.sh file.

So, open the Catalina.sh file located under /usr/share/apache-tomcat-7.0.29/bin with a text editor or vi.

Since we are using 128 Mb for both initial and maximum heap size, add the following line to Catalina.sh

view plaincopy to clipboardprint?

  1. JAVA_OPTS="-Xms128m -Xmx128m"

I usually just add this in the second line of the file so it looks as so:

view plaincopy to clipboardprint?

  1. #!/bin/sh
  2. JAVA_OPTS="-Xms128m -Xmx128m"
  3. # Licensed to the Apache Software Foundation (ASF) under one or more
  4. # contributor license agreements.  See the NOTICE file distributed with
  5. # this work for additional information regarding copyright ownership.
  6. # The ASF licenses this file to You under the Apache License, Version 2.0
  7. # (the "License"); you may not use this file except in compliance with
  8. # the License.  You may obtain a copy of the License at

Step 6 (Optional): How to Run Tomcat using Minimally Privileged (non-root) User.

In our Tomcat configuration above, we are running Tomcat as Root.

For security reasons, it is always best to run services with the only those privileges that are necessary.

There are some who make a strong case that this is not required, but it‘s always best to err on the side of caution.

To run Tomcat as non-root user, we need to do the following:

1. Create the group ‘tomcat‘:

view plaincopy to clipboardprint?

  1. [[email protected] ~]# groupadd tomcat

2. Create the user ‘tomcat‘ and add this user to the tomcat group we created above.

view plaincopy to clipboardprint?

  1. [[email protected] ~]# useradd -s /bin/bash -g tomcat tomcat

The above will create a home directory for the user tomcat in the default user home as /home/tomcat

If we want the home directory to be elsewhere, we simply specify so using the -d switch.

view plaincopy to clipboardprint?

  1. [[email protected] ~]# useradd -g tomcat -d /usr/share/apache-tomcat-7.0.29/tomcat tomcat

The above will create the user tomcat‘s home directory as /usr/share/apache-tomcat-7.0.29/tomcat

3. Change ownership of the tomcat files to the user tomcat we created above:

view plaincopy to clipboardprint?

  1. [[email protected] ~]# chown -Rf tomcat.tomcat /usr/share/apache-tomcat-7.0.29/

Note: it is possible to enhance our security still further by making certain files and directories read-only. This will not be covered in this post and care should be used when setting such permissions.

4. Adjust the start/stop service script we created above. In our new script, we need to su to the user tomcat:

view plaincopy to clipboardprint?

  1. #!/bin/bash
  2. # description: Tomcat Start Stop Restart
  3. # processname: tomcat
  4. # chkconfig: 234 20 80
  5. JAVA_HOME=/usr/java/jdk1.7.0_05
  6. export JAVA_HOME
  7. PATH=$JAVA_HOME/bin:$PATH
  8. export PATH
  9. CATALINA_HOME=/usr/share/apache-tomcat-7.0.29/bin
  10. case $1 in
  11. start)
  12. /bin/su tomcat $CATALINA_HOME/startup.sh
  13. ;;
  14. stop)
  15. /bin/su tomcat $CATALINA_HOME/shutdown.sh
  16. ;;
  17. restart)
  18. /bin/su tomcat $CATALINA_HOME/shutdown.sh
  19. /bin/su tomcat $CATALINA_HOME/startup.sh
  20. ;;
  21. esac
  22. exit 0

Step 7 (Optional): How to Run Tomcat on Port 80 as Non-Root User.

Note: the following applies when you are running Tomcat in "stand alone" mode with Tomcat running under the minimally privileged user Tomcat we created in the previous step.

To run services below port 1024 as a user other than root, you can add the following to your IP tables:

view plaincopy to clipboardprint?

  1. [[email protected] ~]# iptables -t nat -A PREROUTING -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080
  2. [[email protected] ~]# iptables -t nat -A PREROUTING -p udp -m udp --dport 80 -j REDIRECT --to-ports 8080

Be sure to save and restart your IP Tables.

Step 8 (Optional): Running Tomcat behind Apache

As an alternative to running Tomcat on port 80, if you have Apache in front of Tomcat, you can use mod_proxy as well as ajp connector to map your domain to your Tomcat application(s) using an Apache vhost as shown below.

While Tomcat has improved it‘s ‘standalone performance‘, I still prefer to have Apace in front of it for a number of reasons.

In your Apache config, be sure to set KeepAlive to ‘on‘. Apache tuning, of course, is a whole subject in itself...

Example 1: VHOST with mod_proxy:

view plaincopy to clipboardprint?

  1. <VirtualHost *:80>
  2. ServerAdmin [email protected]
  3. ServerName yourdomain.com
  4. ServerAlias www.yourdomain.com
  5. ProxyRequests Off
  6. ProxyPreserveHost On
  7. <Proxy *>
  8. Order allow,deny
  9. Allow from all
  10. </Proxy>
  11. ProxyPass / http://localhost:8080/
  12. ProxyPassReverse / http://localhost:8080/
  13. ErrorLog logs/yourdomain.com-error_log
  14. CustomLog logs/yourdomain.com-access_log common
  15. </VirtualHost>

Example 2: VHOST with ajp connector and mod_proxy:

view plaincopy to clipboardprint?

  1. <VirtualHost *:80>
  2. ServerAdmin [email protected]
  3. ServerName yourdomain.com
  4. ServerAlias www.yourdomain.com
  5. ProxyRequests Off
  6. ProxyPreserveHost On
  7. <Proxy *>
  8. Order allow,deny
  9. Allow from all
  10. </Proxy>
  11. ProxyPass / ajp://localhost:8009/
  12. ProxyPassReverse / ajp://localhost:8009/
  13. ErrorLog logs/yourdomain.com-error_log
  14. CustomLog logs/yourdomain.com-access_log common
  15. </VirtualHost>

In both vhost examples above, we are "mapping" the domain to Tomcat‘s ROOT directory.

If we wish to map to an application such as yourdomain.com/myapp, we can add some rewrite as shown below.

This will rewrite all requests for yourdomain.com to yourdomain.com/myapp.

Example 3: VHOST with rewrite:

view plaincopy to clipboardprint?

    1. <VirtualHost *:80>
    2. ServerAdmin [email protected]
    3. ServerName yourdomain.com
    4. ServerAlias www.yourdomain.com
    5. RewriteEngine On
    6. RewriteRule ^/$ myapp/ [R=301]
    7. ProxyRequests Off
    8. ProxyPreserveHost On
    9. <Proxy *>
    10. Order allow,deny
    11. Allow from all
    12. </Proxy>
    13. ProxyPass / ajp://localhost:8009/
    14. ProxyPassReverse / ajp://localhost:8009/
    15. ErrorLog logs/yourdomain.com-error_log
    16. CustomLog logs/yourdomain.com-access_log common
    17. </VirtualHost>

如果要修改tomcat识别文件时用的编码方式,则可以在$TOMCAT_HOME/bin/catalina.sh中添加

JAVA_OPTS="-Xms128m -Xmx128m -Dfile.encoding=zh_CN.utf8 -Dsun.jnu.encoding=zh_CN.utf8"
CATALINA_OPTS="-Dfile.encoding=zh_CN.utf8"

如果要修改linux 系统的编码方式,用  localectl 显示当前系统语言,用localectl list-locales显示可用的语言,用

localctl set-locale LANG=zh_CN.utf8 设置系统语言。

时间: 2024-08-02 11:02:12

tomcat 安装的相关文章

Tomcat安装与配置

进行Tomcat的安装与配置,得要jdk的支持,jdk的安装与配置就不说了,毕竟学Java第一步就是这个,所以以下步骤是已有jdk的情况下进行的 首先进入Tomcat的官网http://tomcat.apache.org/,会出现左侧Download一栏,选择自己需要的Tomcat版本,这里我选择的是Tomcat 7 点击进入后到达如下界面,选择自己所对应的系统下载对应的zip包(个人感觉下载zip包简介一点,当然也可以下载可执行文件) 注意下载到哪个地方,下载完成后得到压缩包 对此压缩包进行解

ubuntu 16.04 Tomcat安装

安装Tomcat分为两步: JDK和Tomcat 安装jdk 1.在oralce官网下载jdk 2.解压并创建jdk目录 ~# tar jdk-89121-linux-x64.tar.gz ~# mkdir /usr/lib/jvm ~# cp -R jdk1.8.0_121 /usr/lib/jvm 3.添加环境变量 在/etc/bash.bashrc末尾添加以下内容后重启 export JAVA_HOME=/usr/lib/jvm/jdk1.8.0_121  export JRE_HOME=

Tomcat安装及环境配置

欢迎任何形式的转载,但请务必注明出处. 1.安装 安装之前请安装jdk并进行环境配置(点击进入jdk教程) 点击进入官网下载 2.配置三个系统变量,如果没有则新建(环境变量入口在最后配图) 1.CATALINA_HOME 变量值:Tomcat安装所在地址 2.PATH %CATALINA_HOME%\bin 3.CLASSPATH %CATALINA_HOME%\lib\servlet-api.jar 环境变量入口:右键"我的电脑/计算机"->属性

redis安装配置和使用;tomcat安装和使用

virtualbox主要有下面几种方式(不同版本称法不一样,但实质是一样的): 1.Intelnal Network:利用主机上的所有的虚拟机构建一个虚拟网络 2.NAT:能访问互联网,不能访问主机(或局域网)//通过这个下gcc 3.Host Interface:能访问主机(或局域网),不能访问互联网 修改过后 netstat restart 先确保Linux已安装gcc zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or

Windows Tomcat 安装

JDK的安装可以参考 http://www.cnblogs.com/emanlee/p/3702535.html ,然后安装apache-tomcat step1:http://tomcat.apache.org/download-70.cgi 下载apache-tomcat-7.0.12 step2:解压文件,这是绿色版本,无需安装.比如放在 H:\software\ 下面 step3:"我的电脑"->"属性"->"高级"->

Windows下Java环境配置,tomcat安装

问题描述:在Windows下面做Java web相关的项目的时候,Java和tomcat是基础,这里记载一下Java环境的配置以及tomcat的安装和配置. 使用工具:Windows.jdk安装包.tomcat9.0安装包. 操作步骤: 1.Java环境变量的配置. 下载并安装jdk->"我的电脑"右键->属性->"高级系统设置"->"环境变量",新建以下三个变量(已存在则进行编辑): JAVA_HOME:C:\Progr

Linux下的Tomcat安装

1.JDK的安装 Tomcat是目前比较流行的Web应用服务器之一 首先安装JDK: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 解压,移至/usr/local/下 设置环境变量:vim /etc/profile.d/java.sh JAVA_HOME=/usr/local/jdk1.8.0_101/ JAVA_BIN=/usr/local/jdk1.8.0_101/bin

JavaWeb核心编程之Tomcat安装和配置

什么是JavaWeb 在Sun的Java Servlet规范中, 对Java Web应用做了这样的定义: "Java Web应用由一组Servlet, HTML页面, 类, 以及其他可以被绑定的资源构成. 它可以在各种供应商提供的实现Servlet规范的Servlet容器中运行." Java Web应用中可以包含以下内容: 1. Servlet 2.JSP 3.实用类 4.静态文档 如: HTML, 图片等 5.描述Web应用的信息(web.xml) servlet 和Servlet容

Nginx与Tomcat安装、配置与优化

Nginx与Tomcat安装.配置与优化 Nginx的安装与使用 Nginx是一款优秀的反向代理服务器 安装: rpm(或者是pkg安装),是预编译好的程序包安装 yum(或者apt-get)安装,自动联网下载安装包,自动管理依赖关系 编译安装 检查和安装依赖项 yum -y install gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel configure make && make install 启动.停止.重启: 安

将 tomcat 安装成 windows 服务

1.下载 tomcat 的windows 压缩包,一般以 .zip ,而且文件名中有 bin 的文件就是 2.解压下载的文件到某一个目录下,eg: TOMCAT_HOME 3.打开 cmd ,运行 %TOMCAT_HOME%/bin/service.bat install 即可将 tomcat 安装成为 windows 服务 4.服务管理窗口(开始 -> 运行 -> cmd ->  services.msc ),找到 apache tomcat 服务(可以在 service.bat 中重