本帖最后由 不會(huì)游的魚 于 2016-4-18 13:10 編輯
今天閑著沒(méi)事在cntos7版本下裝wdcp v3,發(fā)現(xiàn)網(wǎng)站打不開(kāi)了,查了下資料后發(fā)現(xiàn)7的防火墻不一樣,F(xiàn)在給出解決方法
CentOS 7.0默認(rèn)使用的是firewall作為防火墻,這是個(gè)新東東,如果你想用這個(gè)防火墻的話只能自己增加端口了
增加端口:
- firewall-cmd --permanent --add-port=80/tcp
復(fù)制代碼
配置完后需重新加載:
這樣就行了。其它的端口自行增加
附命令:
systemctl start firewalld.service#啟動(dòng)firewall
systemctl stop firewalld.service#停止firewall
systemctl disable firewalld.service#禁止firewall開(kāi)機(jī)啟動(dòng)
如果不想嫌麻煩那就用之前的iptables防火墻(最好在安裝wdcp之前來(lái)操作)
首先我們先
systemctl stop firewalld.service#停止firewall
systemctl disable firewalld.service#禁止firewall開(kāi)機(jī)啟動(dòng)
然后設(shè)置 iptables service
- yum -y install iptables-services
復(fù)制代碼
如果要修改防火墻配置,如增加防火墻端口3306 vi /etc/sysconfig/iptables 增加規(guī)則
- -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
復(fù)制代碼保存退出后 systemctl restart iptables.service #重啟防火墻使配置生效 systemctl enable iptables.service #設(shè)置防火墻開(kāi)機(jī)啟動(dòng) 最后重啟系統(tǒng)使設(shè)置生效即可。 |