AH00526: Syntax error on line 202 of /home/hso100/apache/conf/httpd.conf: JkWorkersFile: Can't find the workers file specified

박영준·2024년 4월 29일
0

Troubleshooting

목록 보기
25/29

1. 발생한 문제

./apachectl start 로 아파치를 가동했으나, 다음과 같은 에러가 발생했다.

AH00526: Syntax error on line 202 of /home/hso100/apache/conf/httpd.conf: JkWorkersFile: Can't find the workers file specified

2. 발생 원인

/home/hso100/apache/conf/httpd.conf 에서 JkWorkersFile 의 workers.properties 경로 설정 문제

3. 해결법

중략...

# Mod_jk settings
JkWorkersFile "conf/workers.properties"		# 불러올 workers.properties 의 경로 설정
JkLogFile "logs/mod_jk.log"
JkLogLevel error

중략...

사실 정확히 말하자면 이 문제는 아파치 기본 설정 파일인 httpd.conf를 apache 폴더 하위가 아닌 다른 디렉터리에 있었기 때문이었다.
httpd.conf 를 정상적으로 apache/conf 하위로 옮기고 해당 workers.properties의 경로를 맞춰주면 해결될 일이다.

/conf/workers.properties 로 했을 경우에도 해당 에러가 발생했다.
정확한 경로인 conf/workers.properties 로 수정이 필요했다.

profile
개발자로 거듭나기!

0개의 댓글