读书人

Apache启动错误:apache service unab

发布时间: 2013-07-09 09:50:48 作者: rapoo

Apache启动异常:apache service unable to open logs
当启动Apache时,如果弹出窗口提示The Apache service named reported the following error:>>> Unable to open logs .
这种情况是本地有程序和Apache的端口冲突,导致Apache启动异常。常见的是Apache的80端口被占用。
解决方式:更改端口

以下信息转自StackOverFlow:
引用
The following error usually means that some other program is listening on the HTTP port (80).

(OS 10048)Only one usage of each socket address (protocol/network address/port) is normally permitted. : make_sock: could not bind to address 0.0.0.0:80 .

In my experience, IM (chat) clients like to connect to port 80.

From a command prompt, (cmd.exe) run the command:

netstat -an

See if there is a listener on port 80 (Look for a line that says:

TCP 0.0.0.0:80 0.0.0.0:0 LISTENING
=== ====

the important thing being TCP and 80. If you find something, you'll need to track it down using something like TcpView



http://stackoverflow.com/questions/3482616/apache-installation-on-windows-7

读书人网 >Apache

热点推荐