我正在尝试在centos上安装apache和php,我确实安装了这个:
yum install httpd
yum install php
/etc/init.d/httpd start
一切都好,我查一下
http://localhost/
但我不知道为什么,但是当我现在这样做时
/etc/init.d/httpd start
显示
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
很抱歉,我非常喜欢服务器。
非常感谢你。
答案 0 :(得分:2)
在CentOS上,httpd的配置文件默认为/etc/httpd/conf/httpd.conf。编辑该文件并找到" ServerName"条目。通过删除行开头的#并将名称设置为您想要的名称来取消注释该行。保存文件并使用以下命令重新启动服务器:
/etc/init.d/httpd restart
请记住,您担心的消息只是警告,而不是错误。