[root@VM_123_186_centos ~]# service httpd graceful 提示异常 httpd: Could not reliably determine the serv
[root@VM_123_186_centos ~]# service httpd graceful
提示异常
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
解决:
将httpd.conf 配置文件里的 ServerName localhost:80 注释# 取消掉
[root@VM_123_186_centos ~]# vim /etc/httpd/conf/httpd.conf
/etc/httpd/conf/httpd.conf
[root@VM_123_186_centos ~]# service httpd graceful
ok解决