【发布时间】:2015-11-29 18:05:25
【问题描述】:
我已经在 Linux 服务器 CentOS 6.4 上安装了 apache 和 php。我遵循了这些步骤
yum install -y httpd
/sbin/service httpd restart
yum install -y php php-mysql
yum install -y mod_ssl openssl
/sbin/service httpd restart
service iptables stop
我将 /etc/httpd/conf/httpd.conf 中的 ServerName 更改为
#ServerName www.example.com:80
到
ServerName 172.32.35.14 (ip address of the server)
/sbin/service httpd restart
我有一个带有以下代码的 php 示例:
<?php
phpinfo();
?>
但是当我尝试从本地计算机访问页面http://172.32.35.14/info.php 时,它显示“加载页面有问题”。然而,当我从 172.32.35.15 连接到页面时,我得到了正确的响应
我的 ISP 不阻止 http 请求。 172.* 网络是一个 VPN。我连接到 VPN,能够 ping 机器,使用 putty 与机器建立 ssh 连接。但是当我无法从本地机器访问 php 页面时。
我错过了什么?请指教
netstat -tulpn 输出为:
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 1235/rpcbind
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 4406/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 4198/cupsd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 4636/master
tcp 0 0 0.0.0.0:52330 0.0.0.0:* LISTEN 1253/rpc.statd
tcp 0 0 :::111 :::* LISTEN 1235/rpcbind
tcp 0 0 :::80 :::* LISTEN 30170/httpd
tcp 0 0 :::22 :::* LISTEN 4406/sshd
tcp 0 0 ::1:631 :::* LISTEN 4198/cupsd
tcp 0 0 ::1:25 :::* LISTEN 4636/master
tcp 0 0 :::443 :::* LISTEN 30170/httpd
tcp 0 0 :::46690 :::* LISTEN 1253/rpc.statd
udp 0 0 0.0.0.0:1005 0.0.0.0:* 1253/rpc.statd
udp 0 0 0.0.0.0:111 0.0.0.0:* 1235/rpcbind
udp 0 0 0.0.0.0:631 0.0.0.0:* 4198/cupsd
udp 0 0 0.0.0.0:68 0.0.0.0:* 1129/dhclient
udp 0 0 0.0.0.0:986 0.0.0.0:* 1235/rpcbind
udp 0 0 0.0.0.0:39783 0.0.0.0:* 1253/rpc.statd
udp 0 0 :::111 :::* 1235/rpcbind
udp 0 0 :::38152 :::* 1253/rpc.statd
udp 0 0 :::986 :::* 1235/rpcbind
iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
【问题讨论】:
-
172.32.35.15是在同一个子网还是和服务器连接到同一个交换机?尝试更改 httpd 的端口? -
和172.32.35.14在同一个子网
-
尝试使用
nmap检查是否可以连接到服务器的80端口。 -
我的本地机器是windows :(我需要visual c++ env来安装nmap,很遗憾我不能