Apache启动失败错误日志:
The Apache service named reported the following error:
>>> httpd.exe: Could not reliably determine the server’s fully qualified domain name, using 192.168.0.210 for ServerName .
分析:不能可靠地确定服务器的完全限定的域名,使用的192.168.0.210)
The Apache service named reported the following error:
>>> (OS 10055)由于系统缓冲区空间不足或队列已满,不能执行套接字上的操作。 : make_sock: unable to listen for connections on address 0.0.0.0:80
分析:不能侦听80端口
The Apache service named reported the following error:
>>> Unable to open logs
分析:80端口被占用
The Apache service named reported the following error:
>>> [Sun May 13 09:29:45 2012] [warn] NameVirtualHost 192.168.0.210:80 has no VirtualHosts
分析:绑定的IP和端口无法对应虚拟主机
总体错误概述:
从上面的报错分析可以看出:
1.80端口被占用
2.apache无法绑定IP(192.168.0.210)
3.日志文件可能打不开
解决过程:
1.winsock的问题导致:
1.网上邻居->本地连接->属性->internet协议(TCP/IP)->属性->高级->wins标签->去掉启用LMhosts查询前的勾.
2.控制面版->windows防火墙->高级标签->本地连接设置->服务的标签里勾选安全Web服务器(HTTPS)即可.
3.重置LSP到初始状态(常见的是winsockfix这个软件,金山清理专家的LSP修复工具也能解决该问题)。重启后,问题得解决。(直接用360自带的LSP恢复到初始状态不用重启可生效)
2.多网卡多IP导致:
服务器上有两块网卡,分别配置了不同的IP,apache未指定侦听IP
解决方法:
方法一:禁用没有使用的那块网卡
方法二:配置apache侦听指定IP的端口:
Listen 192.168.0.210:80
3.80端口被占用:
查找那个应用占用80端口,关闭占用应用或修改占用软件使用的端口即可。