Centos7中安裝Tomcat伺服器
阿新 • • 發佈:2019-02-03
在linux系統上安裝tomcat非常簡單:解壓及可以使用。
方法如下:
1、將tomcat.tar.gz檔案上傳到伺服器上;
2、tar -zxvf tomcat.tar.gz
3、mv tomcat.xxxx tomcat(可以不用此步驟)
4、cd 到tomcat解壓後的檔案的bin/目錄下, 執行startup.sh即可。
5、安全設定
Centos7預設是firewall作為防火牆,這裡改為iptables的方法:
停止firewall:systemctl stop firewalld.service
安裝防火牆:
yum install iptables-services -y
systemctl enable iptables
6、設定防火牆規則:
vim /etc/sysconfig/iptables ,加入如下規則:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8080-j ACCEPT
7、瀏覽器訪問:http://service-ip:8080/出現tomcat首頁即可成功!