CentOS6.5 安装 tomcat

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS6.5 安装 tomcat相关的知识,希望对你有一定的参考价值。

1、首先下载tomcat.tar.gz包

http://tomcat.apache.org/download-70.cgi

2、移动到目标文件夹 

mv tomcat.tar.gz /usr/tomcat

3、解压tomcat安装包

# mkdir /usr/tomcat
# cd /usr/tomcat

#tar xf tomcat.tar.gz

4、启动tomcat服务

# ./startup.sh

5、在防火墙添加tomcat端口

# /sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
保存配置
# /etc/rc.d/init.d/iptables save
重启防火墙
# /etc/rc.d/init.d/iptables restart

访问tomcat主页

http://localhost:8080!

以上是关于CentOS6.5 安装 tomcat的主要内容,如果未能解决你的问题,请参考以下文章

centos6.5 下 jdk+tomcat8的安装

Centos6.5 安装 JDK +tomcat +mysql 安装教程

Centos6.5下Tomcat安装及配置

Centos6.5 Jdk+Tomcat+Mysql环境安装

centos6.5用tomcat安装jenkins

centos6.5我已经安装了 tomcat6请问如何查看tomcat6启动了没有?