아파치 AH00558 워닝 해결
# httpd -t 로 configtest 를 하면 아래 처럼 에러 메시지가 나오는 경우가 있다.
[root@conoha conf.d]# httpd -t
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::1:85ff:fe82:65e8. Set the 'ServerName' directive globally to suppress this message
Syntax OK
에러까지는 아니라서 아파치 구동에는 문제가 없다.
하지만 찜찜하다면 에러가 안나오도록 수정해주자.
# vi /etc/httpd/conf/httpd.conf 에서 아래 부분을 찾아서 자신의 도메인주소를 넣고 저장
#ServerName www.example.com:80
ServerName www.mydomain.com:80
# apachectl restart
'LINUX' 카테고리의 다른 글
DNS 라운드로빈 로드밸런싱 방법 (0) | 2016.09.09 |
---|---|
아파치 Directory index forbidden by Options directive 에러메세지 (0) | 2016.09.09 |
CentOS 7.x 아파치 재시작 명령어 (0) | 2016.09.06 |
아파치 deflate 압축기능 활성화 상태에서 php ob_start 속도 테스트 (0) | 2016.09.05 |
MySQL MySQLTuner script (0) | 2016.08.18 |