Linux 如何打開端口

    今天開通了一個阿里雲主機,在安裝tomcat服務後發現80、8080等端口不通,網上找了資料,先是按以下步驟操做:


vi /etc/sysconfig/iptables 


-A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT(容許80端口經過防火牆) 
-A INPUT -m state –state NEW -m tcp -p tcp –dport 3306 -j ACCEPT(容許3306端口經過防火牆) 
特別提示:不少網友把這兩條規則添加到防火牆配置的最後一行,致使防火牆啓動失敗,正確的應該是添加到默認的22端口這條規則的下面


添加好以後防火牆規則以下所示:


###################################### 
# Firewall configuration written by system-config-firewall 
# Manual customization of this file is not recommended. 
*filter 
:INPUT ACCEPT [0:0] 
:FORWARD ACCEPT [0:0] 
:OUTPUT ACCEPT [0:0] 
-A INPUT -m state –state ESTABLISHED,RELATED -j ACCEPT 
-A INPUT -p icmp -j ACCEPT 
-A INPUT -i lo -j ACCEPT 
-A INPUT -m state –state NEW -m tcp -p tcp –dport 22 -j ACCEPT 
-A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT 
-A INPUT -m state –state NEW -m tcp -p tcp –dport 3306 -j ACCEPT 
-A INPUT -j REJECT –reject-with icmp-host-prohibited 
-A FORWARD -j REJECT –reject-with icmp-host-prohibited 
COMMIT 
#####################################


/etc/init.d/iptables restart  
#最後重啓防火牆使配置生效


--以上來源於:http://www.myhack58.com/Article/48/66/2012/34999.htm


    
按照以上方法配置在重啓時報錯,找到了另外一篇文章:



http://www.php114.net/n/learn/server/20141011/534.html


/etc/init.d/iptables restart 
iptables:清除防火牆規則:                                 [肯定]
iptables:將鏈設置爲政策 ACCEPT:filter                    [肯定]
iptables:正在卸載模塊:                                   [肯定]
iptables:應用防火牆規則:Bad argument `–-state'
Error occurred at line: 11
Try `iptables-restore -h' or 'iptables-restore --help' for more information.
                                                           [失敗]
發現這種方法並很差使,因而嘗試另一種,經過命令去添加端口的方法。
[root@centos httpd]# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
[root@centos httpd]# /etc/rc.d/init.d/iptables save
[root@centos httpd]# /etc/init.d/iptables restart
這樣就搞定了,查看效果
[root@centos httpd]# /etc/init.d/iptables status php

----------------------------------------------------------- html

今天換了個centos7的主機,發現沒有iptables了,找到下面的方法: centos

CentOS 7 默認沒有使用iptables,因此經過編輯iptables的配置文件來開啓80端口是不能夠的 tomcat

CentOS 7 採用了 firewalld 防火牆 tcp

如要查詢是否開啓80端口則: this

1
2
[root@joe-pc ~]# firewall-cmd --query-port=80/tcp
no

顯然80端口沒有開啓 阿里雲

下面咱們開啓80端口: centos7

1
2
[root@joe-pc ~]# firewall-cmd --add-port=80/tcp
success
相關文章
相關標籤/搜索