无法访问在 vmware 中运行 CentOS 6.3 的服务器

无法访问在 vmware 中运行 CentOS 6.3 的服务器

我刚刚在使用桥接连接的 vmware 机器上安装了 CentOS,安装了 apache、php 和 mysql,但是运行时service httpd start出现警告(?):

Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName

我可以使用 putty 连接到服务器,所以我真的不知道为什么它无法在浏览器中加载。

编辑:

Httpd启动成功,返回[ 好的 ]. 运行netstat -tuplen | grep :80产量:

tcp   0   0 :::80     :::*     LISTEN    0     40392   15894/httpd

我可以用 putty 连接到 192.168.0.113,但浏览器说can't connect to 192.168.0.113

答案1

我大胆猜测您有阻止端口 80 的默认规则iptables

验证iptables -L- 可能没有允许端口 80 流量的规则。

用于iptables -I INPUT -m tcp --dport 80 -j ACCEPT允许流量,service iptables save并使更改持久。

相关内容