裝載系統的時候只開啟了22埠。結果再裝完nginx+php+mysql 後不能訪問**。
檢視防火牆設定發現沒開啟80埠
iptables -l -n
由於linux防火牆預設是關閉的。可以用兩種方式,乙個是關閉防火牆,另乙個就是讓防火牆開放這個埠。
關閉防火牆命名:
service iptables stop (不推薦)
開放8080埠的解決步驟如下:
1、修改/etc/sysconfig/iptables 檔案,增加如下一行:
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 8080 -j accept
重啟iptables
service iptables restart
2、重啟防火牆,這裡有兩種方式重啟防火牆
a) 重啟後生效
開啟: chkconfig iptables on關閉: chkconfig iptables off
b) 即時生效,重啟後失效
開啟: service iptables start關閉: service iptables stop
開放乙個範圍的埠3000到5000
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 3000:5000 -j accept
linux 開放 埠 命令
開發不連續埠 包括單個 iptables a input p tcp m multiport dport 21,20 j accept 其他都關閉 iptables a input p tcp j reject reject with tcp reset 開放連續埠 iptables a rh fi...
Linux開放埠命令
1 開啟防火牆 systemctl start firewalld 2 開放指定埠 firewall cmd zone public add port 1935 tcp permanent 命令含義 zone 作用域 add port 1935 tcp 新增埠,格式為 埠 通訊協議 permanen...
linux開放指定埠
linux開放指定埠命令 方式一centos 複製 1 開啟防火牆 systemctl start firewalld 2 開放指定埠 firewall cmd zone public add port 1935 tcp permanent 命令含義 zone 作用域 add port 1935 t...