啟動Apache提示報錯:Could not reliably determine the server's fully qualified domain name, using localhost,localdomain . Set the 'ServerName' directive globa ...
啟動Apache提示報錯:Could not reliably determine the server's fully qualified domain name, using localhost,localdomain . Set the 'ServerName' directive globally to suppress this message.
解決辦法:
1、進入apache的安裝目錄:(視個人安裝情況而不同) [root@server ~]# cd /usr/local/apache/conf
2、編輯httpd.conf文件,搜索"#ServerName",添加ServerName localhost:80
[root@server conf]# ls
extra httpd.conf magic mime.types original
[root@server conf]# vi httpd.conf
#ServerName www.example.com:80
ServerName localhost:80
3、再重新啟動apache 即可。