OS

ubuntu 14.04 apache2 AH00558 error

puttico 2016. 1. 29. 15:58
AH00558: apache2: Could not reliably determine the server's fully qualified domain name,
using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message

아파치 시작시 위와 같은 메시지가 뜬다면 아래 처럼 한다.

sudo vi /etc/apache2/apache2.conf

다음 내용을 추가한다.

ServerName localhost

추가한 내용을 저장하고 재시작하거나 설정을 다시 읽는다.
재시작하는 경우

sudo service apache2 restart

설정을 다시 읽는 경우

sudo service apache2 reload