解决apache启动错误 AH00558: httpd: Could not reliably determine...

[root@localhost httpd-2.4.7]# /usr/local/httpd/bin/apachectl start
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain. Set the 'ServerName' directive globally to suppress this message

apache 启动出现这种错误的解决方法:


将 apache 的配置文件httpd.conf中的 ServerName 改成可用域名或如下配置

ServerName localhost:80
 

不要与已有的端口重复即可

小技巧:apache启动错误 AH00072: make_sock: could not bind to address [::]:443

在windows下准备准备开启apache,发现端口被占用,看了host.conf里面配置的listen端口是80,但是提示是443,奇怪了,查了下资料,原来443是apache-ssl的端口。

那就查一查是谁占用了:

netstat -ano|findstr "443"
1
然后根据进程号 17208 继续查找:

tasklist|findstr "17208"
1
可见433由vmare占用,然后打开“任务管理器”找到 vmare-hostd.exe这个进程关掉就可以。

PS:也可以不关掉vmare,那就解决apache了: 
方案1:进入Apache的安装目录,搜索httpd-ssl.conf,右击文本打开。寻找443替换成其他不常用的端口号,比如442。接下来就可以正常启动Apache了。

方案2:直接关闭Apache的SSL模块, 反正暂时还用不到,\xampp\apache\confhttpd.conf文件,#LoadModule ssl_module modules/mod_ssl.so 和#Include conf/extra/httpd-ssl.conf

你可能感兴趣的:(apache)