栖息谷-管理人的网上家园

Linux下安装tomcat5.5.25

[复制链接] 0
回复
616
查看
打印 上一主题 下一主题
楼主
跳转到指定楼层
分享到:
发表于 2007-11-4 19:29:07 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

1.首先解压缩。

[root@tpwb local]# tar -zxvf apache-tomcat-5.5.25.tar.gz

2.把文件移到/opt 

# mv apache-tomcat-5.5.25 /opt

>

3.设置路径:

/etc/profile文件中加入:
export TOMCAT_HOME=/opt/apache-tomcat-5.5.25

使之生效:

# source /etc/profile

4Tomcat管理员密码的设定

//设置之后,凡有登录有页面都会先弹出一个对话框>>

//建议不动这个文件>>

$TOMCAT_HOME\webapps\Root\WEB-INF\web.xml
1)在<web-app></web-app>之间加入
<security-constraint>
<web-resource-collection>
<web-resource-name>Entire Application</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<!-- NOTE: This role is not present in the default users file -->
<role-name>manager</role-name>
</auth-constraint>
</security-constraint>

<!-- Define the Login Configuration for this Application -->
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>TEST ACCESS CONTROL</realm-name>
</login-config>
//
如果存在就不用加了,注意下面的东东
2)然后在$TOMCAT_HOME/conf/tomcat-users.xml加入(有颜色部分)
<!--[if !supportLineBreakNewLine]-->
<!--[endif]-->

<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="tomcat"/>
<role rolename="role1"/>
<role rolename="manager"/>
<role rolename="admin"/>

<user username="tomcat" password="tomcat" roles="tomcat"/>
<user username="both" password="tomcat" roles="tomcat,role1"/>
<user username="role1" password="tomcat" roles="role1"/>
<user username="admin" password="111111" roles="admin,manager"/>
</tomcat-users>

roles的名字和web.xml中的相对应

3)修改端口号

8080端口改为80。($TOMCAT_HOME /conf/server.xml

4)启动服务

#  cd /opt/apache-tomcat-5.5.25/bin

#  ./startup.sh

Using CATALINA_BASE:   /opt/apache-tomcat-5.5.25

Using CATALINA_HOME:   /opt/apache-tomcat-5.5.25

Using CATALINA_TMPDIR: /opt/apache-tomcat-5.5.25/temp

Using JRE_HOME:       /usr/j***a/jdk1.5.0_13

(5)在浏览器中输入:http://+IP地址,如果看到了tomcat欢迎页面,说明你的tomcat服务器安装成功。

5.自动启动tomcat服务

编辑/etc/rc.d/rc.local 增加内容>>

export JDK_HOME=/usr/j***a/jdk1.5.0_13
export J***A_HOME=/usr/j***a/jdk1.5.0_13

/opt/apache-tomcat-5.5.25/bin/startup.sh

这样在系统重启后就可以自动启动Tomcat

>

注:此并没有安装admin,要重新去下载

 

 

使用高级回帖 (可批量传图、插入视频等)快速回复

您需要登录后才可以回帖 登录 | 加入

本版积分规则   Ctrl + Enter 快速发布  

发帖时请遵守我国法律,网站会将有关你发帖内容、时间以及发帖IP地址等记录保留,只要接到合法请求,即会将信息提供给有关政府机构。
快速回复 返回顶部 返回列表