运行NGINXon阿里巴巴ECS无法从网络访问



在阿里云 ECS 实例上,我的 NGINX 工作正常,我可以从我的终端 ping 它,但我无法从浏览器访问我的站点。

nginx -t

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

service nginx status

● nginx.service - A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2020-06-04 05:33:26 CST; 30min ago
Docs: man:nginx(8)
Process: 1737 ExecReload=/usr/sbin/nginx -g daemon on; master_process on; -s reload (code=exited, status=0/SUCCESS)
Process: 558 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Process: 442 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Main PID: 1714 (nginx)
Tasks: 2 (limit: 1129)
CGroup: /system.slice/nginx.service
├─1714 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
└─1738 nginx: worker process

当我指向我的IP没有回应时! 问题出在哪里?

尝试建议的修复程序给出了以下内容 从终端重新放置

您的防火墙有问题,请尝试允许端口 80/443

sudo ufw allow 80/tcp
sudo ufw allow 443/tcp

并检查端口是否侦听

0.0.0.0
sudo netstat -tunalp | grep 80
sudo netstat -tunalp | grep 443

如果无法解决您在阿里控制台上的内部安全组的问题

  • 进入云服务器控制台。
  • 在选项卡Network & Security中,选择Security Groups

并确保你允许端口80/443,或者如果你想允许所有端口int安全组

,就像这样

创建 ECS 实例时是否选择了分配公网 IP 地址?在我看来,它没有在创建 ECS 的过程中分配 NatPublicIP 地址。

尝试打开端口:

sudo ufw allow 80/tcp
sudo ufw allow 443/tcp

然后进一步尝试检查端口:

sudo lsof -P -n -i :80 -i :443 | grep LISTEN

检查本地主机的状态:

curl -i http://127.0.0.1/nginx_status

同时尝试重新启动服务器:

sudo service nginx restart
sudo service nginx reload

如果这没有帮助,请尝试进入调试模式并跟踪常见错误。

如果这没有帮助,请从头开始安装实例和nginx。

希望这能让您了解错过了什么步骤。

相关内容

  • 没有找到相关文章

最新更新