에러
Starting httpd: httpd: Could not determine
the server's fully qualified domain name,
using 127.0.0.1 for ServerName
해결
→/etc/httpd/conf/httpd.conf 를 수정
# ServerName 192.168.0.20:80 '#'을 삭제
ServerName 192.168.0.20:80
다시 기동이 실패 할경우,
error_log를 본다.
각자 환경에 맞는 경로에 있지만 기본설치의 경우
/var/log/httpd/error_log에 있다.
tail -f /var/log/httpd/error_log
(EAI 2)Name or service not known: mod_unique_id:
unable to find IPv4 adress of "pokute_linux"
pokute_linux라는 호스트명이 IP주소와 연결되어 있지 않다는 에러
해결방법
/etc/hosts 수정
192.168.0.20 뒤에 pokute_linux 추가
192.168.0.20 pokute_linux
'Dev > Apache' 카테고리의 다른 글
[Apache] 특정 파일 확장자의 접근 access를 거부하는 방법 (0) | 2017.03.23 |
---|---|
[Linux] 리눅스 hostname과 /etc/hosts의 가 맞지 않을 때 나오는 apache의 Start 에러 (0) | 2012.05.28 |
리눅스 우분투 아파치 웹서버 Request header field is missing ':' separator 에러 해결 (0) | 2012.01.18 |
Apache Alias 설정으로 여러개의 서버루트를 간단히 연결 (0) | 2011.01.21 |
Apach Document Root를 지정해도 인식을 못할 때 (0) | 2011.01.21 |
Linux Apache PHP 연동 시작후 웹에서 접속시 소스가 그대로 보일 경우 대응 (0) | 2010.12.21 |
현재 설치 되어 있는 아파치 모듈 확인 하기 (0) | 2010.01.21 |
Apache httpd.conf에 mod_rewrite추가 관련 에러 대응 처리 (0) | 2010.01.21 |
Apache 설치중 Syntax error on line 에러 (0) | 2010.01.21 |