赞
踩
80
端口,首先要去华为云控制台安全组
添加入方向的80
端口添加完之后,反复测试仍然无法通过IP访问,我已经能确保 nginx 已经监听在80端口了,但是还是没法访问
远程连接ECS实例,确认服务已经开启。
执行如下命令,检查nginx服务是否已经开启。
systemctl status nginx
systemctl start nginx
netstat -an | grep 80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
systemctl status firewalld
查看下防火墙状态,下图显示防火墙开启systemctl status firewalld
Active inactive(dead)
,说明防火墙是关闭状态Active inactive(running)
,说明防火墙现在是开启状态 firewall-cmd --query-port=80/tcp
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --permanent --remove-port=80/tcp
firewall-cmd --reload
systemctl stop firewalld
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。