IT/IT WIKI

[Wiki] httpd start시 "Set the 'ServerName' directive globally to suppress this message" 오류 발생하는 경우 해결법

wookiist 2017. 10. 20. 11:29
'httpd start' 시,  Set the 'ServerName' directive globally to suppress this message 오류 발생하는 경우 해결법

httpd를 인스톨하고, httpd start 명령어를 수행했을 때, "Set the 'ServerName' directive globally to suppress this message" 오류가 발생하는 경우가 있다. 생각보다 간단한 방법이었다.


httpd의 설정 파일, httpd.conf 파일을 보면, 위 오류에서 나타난 것처럼 'ServerName'이 주석 처리 되어 있다. 따라서, 해당 줄의 주석처리를 해제하고, 일반적인 경우 아래와 같이 ServerName 우측에 localhost를 입력해주면 된다.

$ vi /etc/httpd/conf/httpd.conf

# 파일 내에서 ServerName을 찾아, 다음과 같이 수정한다.
ServerName localhost
# 저장하고 빠져 나온다.(:wq!)

# httpd를 재시작한다.
$ httpd start


반응형