iptables 开启80端口
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
拿到新的linux服务器,当我们部署好web运行环境和程序时,却发现访问被拒绝,http请求无响应,那么就可能是linux的iptables限制了访问。
你可以确认一下,输入命令service iptables status,查看防火墙工作状态,如果是开启的,输入service iptables stop关闭防火墙,此时在电脑中
上访问程序url,如果能打开网站,则说明问题就是iptables限制引起的,通常web的url是默认端口(即80端口),而iptables没有放行80端口,所
以我们需要允许此端口通过防火墙,当然也可以是其它端口,根据需要来配置。
解决办法:1、关闭iptables(不推荐);
2、修改iptables配置文件,添加访问规则:
(1)、打开文件:vi /etc/sysconfig/iptables
(2)、添加规则(放行80端口):-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
(3)、保存退出:按esc,:wq!
(4)、重启防火墙,使规则生效:service iptables restart
此时就可以访问网站了,当然你可以输入命令service iptables status看到此时多了条规则:
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:80
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)