本帖最后由 不会游的鱼 于 2016-4-18 13:10 编辑
今天闲着没事在cntos7版本下装wdcp v3,发现网站打不开了,查了下资料后发现7的防火墙不一样。现在给出解决方法
CentOS 7.0默认使用的是firewall作为防火墙,这是个新东东,如果你想用这个防火墙的话只能自己增加端口了
增加端口:
- firewall-cmd --permanent --add-port=80/tcp
复制代码
配置完后需重新加载:
这样就行了。其它的端口自行增加
附命令:
systemctl start firewalld.service#启动firewall
systemctl stop firewalld.service#停止firewall
systemctl disable firewalld.service#禁止firewall开机启动
如果不想嫌麻烦那就用之前的iptables防火墙(最好在安装wdcp之前来操作)
首先我们先
systemctl stop firewalld.service#停止firewall
systemctl disable firewalld.service#禁止firewall开机启动
然后设置 iptables service
- yum -y install iptables-services
复制代码
如果要修改防火墙配置,如增加防火墙端口3306 vi /etc/sysconfig/iptables 增加规则
- -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
复制代码保存退出后 systemctl restart iptables.service #重启防火墙使配置生效 systemctl enable iptables.service #设置防火墙开机启动 最后重启系统使设置生效即可。 |