CentOS7上解決tomcat不能被外部瀏覽訪問及tomcat開機啓動

在linux上開啓的tomcat使用瀏覽器訪問不了。linux

主要緣由在於防火牆的存在,致使的端口沒法訪問。apache

CentOS7使用firewall而不是iptables。因此解決這類問題能夠經過添加firewall的端口,使其對咱們須要用的端口開放。vim

1.使用命令  firewall-cmd --state查看防火牆狀態。獲得結果是running或者not runningcentos

2.在running 狀態下,向firewall 添加須要開放的端口瀏覽器

命令爲 firewall-cmd --permanent --zone=public --add-port=8080/tcp //永久的添加該端口。去掉--permanent則表示臨時。tomcat

4.firewall-cmd --reload //加載配置,使得修改有效。tcp

5.使用命令 firewall-cmd --permanent --zone=public --list-ports //查看開啓的端口,出現8080/tcp這開啓正確centos7

6.再次使用外部瀏覽器訪問,這出現tomcat的歡迎界面。code

 

補充一(CentOS7如下有專門的防火牆操做命令):ip

開啓防火牆的命令

         systemctl start firewalld.service

關閉防火牆的命令

        systemctl stop firewalld.service

開機自動啓動

        systemctl enable firewalld.service

關閉開機自動啓動

        systemctl disable firewalld.service

查看防火牆狀態

        systemctl status firewalld下列顯示錶示沒有問題。

補充二(centos7 tomcat service 自啓動)

第一步:

vim /lib/systemd/system/tomcat.service

第二步:複製如下代碼保存退出,注意修改你的tomcat路徑

[Unit]
Description=tomcat
After=network.target
[Service]
Type=oneshot
ExecStart=/home/apache-tomcat-7.0.70/bin/startup.sh   //自已的tomcat目錄
ExecStop=/home/apache-tomcat-7.0.70/bin/shutdown.sh
ExecReload=/bin/kill -s HUP $MAINPID
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target

第三步:啓動服務

systemctl start tomcat.service

第四步:查看服務狀態

systemctl status tomcat.service

第五步:開機啓動

systemctl enable tomcat.service
相關文章
相關標籤/搜索