Oracle的服务器,默认防火墙是开着的,所以必须通过iptables命令打开先
执行 命令
iptables -I INPUT -p tcp --dport 80 -j ACCEPT
其中tcp,和80端口可以根据自己的需要进行修改。
最后不要忘了保存iptable的规则
sudo iptables-save > /etc/iptables/rules.v4
# CentOS7使用方法
systemctl enable iptables.service
恢复使用
sudo iptables-restore < /etc/iptables/rules.v4
另外一种方法
查看防火墙状态
systemctl status firewalld
查看端口
firewall-cmd --list-ports
打开端口
firewall-cmd --permanent --zone=public --add-port=80/tcp
重启防火墙
firewall-cmd --reload