CentOS7使用iptables防火牆開放埠

2021-09-26 09:58:12 字數 1241 閱讀 1993

背景:在centos上面安裝了mysql、svn、tomcat等軟體,發現訪問不了,用telnet命令檢視埠,發現都不通:

telnet ip 埠
centos7 預設使用firewalld防火牆,如果想換回iptables防火牆,可關閉firewalld並安裝iptables。

systemctl stop firewalld.service

systemctl disable firewalld.service

firewall-cmd --state

yum install iptables-services

vi /etc/sysconfig/iptables
新增埠80、8080、3306、3690埠:

注意:新增在埠22上面或者下面,不要放在最後,不然不起作用。另外,mac上面insert輸入直接按字母」i」鍵即可。

esc :wq! 退出儲存修改。

systemctl restart iptables.service

設定防火牆開機啟動:

systemctl enable iptables.service

再次嘗試連線,成功了!

客戶端連線不了可能原因有多種,比如:

1.伺服器端服務未啟動

2.軟體本身未開通使用者訪問許可權

比如

a.mysql需要針對使用者開放許可權:
mysql授權:

grant all privileges on dbname.* to dbuser@'%' identified by 'dbpassword' with grant option;

flush privileges;
切記:一定要重新整理許可權。

b.svn需要事先建好倉庫並配置使用者、許可權等資訊等。
3.伺服器端口被防火牆封掉。

請先排除1、2可能,綜合處理訪問許可權問題。

CentOS7使用總結

ctrl alt 圖形介面 ctrl alt f1 命令列介面 ctrl alt f2 f3 f3 f4 f5 f6 應用程式 終端 檢視 放大,可以放大字型大小 touch 檔案名字 mkdir 資料夾名字 rm 檔案名字 rm rf 資料夾名字 su 然後輸入管理員密碼 需要切換到超級使用者 圖...

Centos 7 使用記錄

1.網路配置 url 2.防火牆詳解 url 加入永久開放埠 color darkblue firewall cmd permanent zone home add port 443 tcp firewall cmd permanent add port 5432 tcp color 臨時開發埠 c...

centos7使用筆記

檢視核心版本 uname a 檢視發行版本 cat etc elease 設定靜態ip cd etc sysconfig network scripts 看到類似這樣的乙個檔案 ifcfg eno16777736 vim ifcfg eno16777736 修改如下 bootproto改為stati...