https://tomcat.apache.org/whichversion.html
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
下载对应的tomcat 及 jdk 版本
一、安装环境
Centos6.5
jdk-7u80-linux-x64.tar.gz
apache-tomcat-7.0.69.tar.gz
------------------------------------------------------------------------
二、安装前注意事项
1、安装Tomcat前必须先安装JDK(java development kit)
java -version #验证环境变量
2、安装前最好把防火墙和SELinux关掉,不关掉会影响访问。
Linux 关闭iptable防火墙
/etc/init.d/iptables stop //关闭
chkconfig iptables off //关闭开机自启动,3表示文本模式
chkconfig --list|grep ipta
关闭SELinux
cat /etc/selinux/config
通过getenforce或sestatus -v来查看状态,当前SELinux状态是enforcing开启的
临时关闭:使用setenforce0,不用重启即可当前状态生效,但重启后还是Enforcing的状态
永久生效需要把/etc/selinux/config配置中的SELINUX=enforcing更改SELINUX=disable
三、安装
时间: 2024-10-05 20:19:10