浏览器显示服务器处于离线状态

浏览器显示服务器处于离线状态

我刚刚从 serverdeals.org 订购了一台服务器。我遇到了一个奇怪的问题,甚至连支持人员都无法找出那是什么

他们给了我一个原始服务器,我按照我想要的方式安装了 nginx(成功了)但是当我去的时候http://serverip/,浏览器说页面不可用(又名离线)

这可能是什么...我第一次遇到这个问题这绝对不是我的安装错误,因为到目前为止我已经在很多服务器上安装了 nginx

服务器人员可能漏掉了什么?不过我可以通过 ssh 和 ftp 登录

更新:

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      1184/rpcbind
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      15847/nginx
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      1503/sshd
tcp        0      0 0.0.0.0:52888               0.0.0.0:*                   LISTEN      1202/rpc.statd
tcp        0      0 :::45774                    :::*                        LISTEN      1202/rpc.statd
tcp        0      0 :::111                      :::*                        LISTEN      1184/rpcbind
tcp        0      0 :::22                       :::*                        LISTEN      1503/sshd

答案1

确保你确实启动了 nginx:

service nginx start

确保在防火墙中打开了端口 80:

system-config-firewall-tui   # (Red Hat/CentOS)
# (You're on your own for anything else)

相关内容