啟動apache時出現
[root@centos apache2]# /usr/local/apache2/bin/apachectl start
HTTPd: Could not reliably determine the server's fully qualified domain HTTP://www.aliyun.com/zixun/aggregation/11696. html">name, using 121.10.40.155 for ServerName
現在提供該問題的解決方法
1)進入apache設定檔的目錄:(視個人安裝情況而不同)
[root@centos /]# cd /etc/HTTPd //我安裝時設定檔所在的目錄為/etc/HTTPd
2)編輯HTTPd.conf檔,搜索"#ServerName",添加ServerName localhost:80
[root@centos HTTPd]# ls
conf.d extra HTTPd.conf magic mime.types original
[root@centos HTTPd]# vi HTTPd.conf
#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName www.example.com:80
更改為:
ServerName localhost:80
3)再重新開機apache 即可。
[root@centos HTTPd]# /usr/local/apache2/bin/apachectl restart
OK,啟動成功啦!