我刚刚在远程服务器上的 CentOS 上安装了新的 apache/mysql。现在我只想能够通过我服务器上的 ip 访问我的服务器
假设 ip 是64.123.myip.whatever
这是我的 /etc/httpd/conf/httpd.conf 设置
### Section 2: 'Main' server configuration
ServerName 64.123.myip.whatever:80
### Section 3: Virtual Hosts
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /var/www/html
ServerName 64.123.myip.whatever
ErrorLog logs/error_log
CustomLog logs/access_log common
</VirtualHost>
我重新启动我的 apache,尝试访问此服务器,但在浏览器中出现此错误
Oops! Google Chrome could not connect to 64.123.myip.whatever
为什么这不起作用?