一、启动apache遇到这种警告:
httpd: Could not reliably determine the server’s fully qualified domain name
二·、修改配置
[root@localhost conf.d]# vim /etc/httpd/conf/httpd.conf
#ServerName www.example.com:80 //找到ServerName这一行
改成:ServerName localhost:80 或者去掉“#”
二·、重启httpd服务:#systemctl restart httpd
来源地址:https://blog.csdn.net/qq_52197320/article/details/129792027