こんなエラーが出た人への対応方法
AH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using localhost.localhost. Set the ‘ServerName’ directive globally to suppress this message
スポンサーリンク
実際にエラーが出たコマンド
[root@localhost ~]# httpd -V | head -n 1
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localhost. Set the 'ServerName' directive globally to suppress this message
Server version: Apache/2.4.6 (CentOS)
[root@localhost ~]#
対応方法
下記のように(localhost.localhost:80)ポート番号をつけると解消されます。
[root@localhost ~]# hostnamectl set-hostname localhost.localhost:80
[root@localhost ~]#
スポンサーリンク