linux防火牆的啟動和關閉

2021-04-13 11:21:48 字數 1108 閱讀 8535

昨天在linux伺服器上裝了乙個tomcat,整個過程很順利,裝上去就可以用。但是今天卻無法啟動。於是修改tocmat的配置檔案,重

裝tomcat,修改/etc/profile,把各種可能都嘗試了好幾次。可是tomcat就是死在那裡。唉~~,真是氣人.....

看來只能用最笨的辦法試試——重灌linux。在重灌之前,我在linux服器試著訪問 tomcat,結果頁面一下子就出來了。很顯然tomcat

已經啟動了,但是在其他機卻無法訪問,說明網路出了問題。oh,不對,網路也不可能出問題,因為伺服器還裝著apache,apache運

行正常,其他機子都可以訪問它。它們的不同之處是apache使用80埠,tomcat使用8080埠。於是我關閉apache,將tomcat改為80

埠,啟動tomcat,這一次tomcat執行正常,網內的其他機器也可以訪問。

後來在網上查詢資料,發覺是防火牆在作怪,它關閉了許多埠,但沒有關80。於是我用service iptables stop 關閉防火牆,再用

將tomcat的埠改為 8080 , 啟動 tomcat , 結果一切正常。

在此說一下關於啟動和關閉防火牆的命令:

1) 重啟後生效

開啟: chkconfig iptables on

關閉: chkconfig iptables off

2) 即時生效,重啟後失效

開啟: service iptables start

關閉: service iptables stop

需要說明的是對於linux下的其它服務都可以用以上命令執行開啟和關閉操作。

在開啟了防火牆時,做如下設定,開啟相關埠,

修改/etc/sysconfig/iptables 檔案,新增以下內容:

-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 80 -j accept

-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 22 -j accept

參考資料:http://www.xrss.cn/dev/linux/200782015872.html

Linux 關閉防火牆

centos 6 中防火牆預設是 iptables,而 centos 7 中防火牆預設是 firewall。a 檢視防火牆狀態 service iptable statusb 臨時關閉防火牆 臨時關閉防火牆 servcie iptables stop 臨時啟動防火牆 service iptables...

Linux 關閉防火牆

一.linux下開啟 關閉防火牆命令 1 永久性生效,重啟後不會復原開啟 chkconfig iptables on關閉 chkconfig iptables off 2 即時生效,重啟後復原開啟 service iptables start關閉 service iptables stop 需要說明...

linux關閉防火牆

1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以上命令...