以httpd-2.2.25-win32-x86-openssl-0.9.8y.msi为例。
Apache HTTP Server 2.2.25执行Test Configuration时,实际上是直接运行了httpd.exe
C:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin>httpd.exe
httpd.exe: Could not reliably determine the server‘s fully qualified domain name, using 192.168.0.103 for ServerName
(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
no listening sockets available, shutting down
Unable to open logs
C:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin>
打开httpd.conf,搜索ServerName
去掉注释即可。
C:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin>httpd.exe
(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
no listening sockets available, shutting down
Unable to open logs
C:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin>
Apache HTTP Server 2.2.25执行Test Configuration时报错(Could not reliably determine the server's fully qualified domain name, using 192.168.0.103 for ServerName)
原文地址:https://www.cnblogs.com/rms365/p/10961582.html