Starting httpd: 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 的配置文件中 ServerName 改成可用域名或如下配置
ServerName localhost:80
具体步骤如下:
1.打开终端输入 cd /etc/apache2
2.此时进入apache,然后再输入 sudo vim httpd.conf
3.进入httpd.conf后,查找 ServerName 位置 ,具体操作:输入 /ServerName 定位到之后,找到#ServerName ......:80这个东西,利用vim的操作,先往下插入一行,然后将新插入的那一行的'#'删除,然后更改ServerName后边的内容,ServerName localhost:80,然后输入:wq保存退出,即可解决这个问题