在遵循安装PHPMyAdmin(http://www.krizna.com/centos/installing-apache2-mysql-server-php-centos-6-lamp/#apache)
的指南时,我神奇地能够破解端口80 / Apache服务器在我开始使用指南之前,Apache 2正在为我工作(能够查看页面并查看默认的蓝色页面)
我按照指南进入“PHP安装”下的第4步,然后去检查页面,我收到以下错误(注意:我跳过了Mysql安装,因为我已经安装了它并且“测试你的页面”在Apache部分,因为我以前工作过。)
ERROR
无法检索请求的网址
The following error was encountered while trying to retrieve the URL: http://`192.168.141.22`/
Read Error
The system returned: (104) Connection reset by peer
An error condition occurred while reading data from the network. Please retry your request.
Your cache administrator is webmaster.
Generated Wed, 03 Jul 2013 19:04:56 GMT by tx22rrpep4da (hpm/3.0.55)
我尝试卸载(yum erase)httpd和php并重新安装并没有成功。
我做了一个nmap,它显示了80 / tcp过滤的http。
我甚至禁用/停止IP表,这是问题,没有运气。我还有其他东西,比如TS3在其他端口上正常运行。
重新启动专用服务器。
netstat -tulpn
te PID/Program name
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 25896/httpd
tcp 0 0 0.0.0.0:30033 0.0.0.0:* LISTEN 2967/./ts3server_li
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 2736/named
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2798/sshd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 2873/master
tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN 2736/named
tcp 0 0 0.0.0.0:10011 0.0.0.0:* LISTEN 2967/./ts3server_li
tcp 0 0 ::1:53 :::* LISTEN 2736/named
tcp 0 0 :::22 :::* LISTEN 2798/sshd
tcp 0 0 ::1:953 :::* LISTEN 2736/named
udp 0 0 0.0.0.0:9987 0.0.0.0:* 2967/./ts3server_li
udp 0 0 127.0.0.1:53 0.0.0.0:* 2736/named
udp 0 0 ::1:53 :::* 2736/named
我有一些其他人测试IP,以防它只是我的连接,但他们也都一样(IP:192.168.141.22
)
真的希望我可以解决这个问题,而不是像擦拭和重新安装centos 6那样做一些事情。
答案 0 :(得分:0)
netstat命令显示Apache正在听取以下IP&端口:
0 0.0.0.0:80
如果你想在192 ... ip中访问Apache,那么你需要编辑一个带有“Listen”指令的.conf文件(通常在/etc/httpd/conf.d/ports.conf或者主.conf文件)并放入ip或删除所有ips,以便Apache可以监听机器中可用的所有接口。