cundeng 发表于 2016-12-31 07:51:02

Apache启动异常:apache service unable to open logs

当启动Apache时,如果弹出窗口提示引用
unable to open logs
,在windows的事件日志是说明
The Apache service namedreported 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
页: [1]
查看完整版本: Apache启动异常:apache service unable to open logs