728x90
에러 메시지
[Thu Sep 26 17:02:51.401841 2013] [core:error] [pid 29603:tid 140488246032128] (13)Permission denied: [client 211.222.111.123:62022] AH00035: access to / denied (filesystem path '/home/webuser/htdocs') because search permissions are missing on a component of the path
원인
아파치 내에서 기본 디렉토리를 제외하고 다른 디렉토리를 접근이 막혀있다.
아래 코드는 기본 디폴트 값으로 등록되어있는 경로입니다.
$ vi <아파치경로>/conf/httpd.conf
<Directory />
AllowOverride none
Require all denied
Require all granted
</Directory>
<Directory "/app/server/apache-2.4.9/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
조치
아래 명령어를 확인하여 버전에 맞게 설정하시면 됩니다.
# 모든 요청 허가
$ vi <아파치경로>/conf/httpd.conf
Apache 2.2 configuration:
Order allow,deny
Allow from all
Apache 2.4 configuration:
Require all granted
# 모든 요청 거부
Apache 2.2 configuration:
Order deny,allow
Deny from all
Apache 2.4 configuration:
Require all denied
728x90
'Linux' 카테고리의 다른 글
[Jenkins] Gradle 버전 신규 추가 방법 (0) | 2024.07.16 |
---|---|
[Server] Nginx, Apche, PHP, Tomcat 버전 정보 숨기기 (0) | 2024.06.28 |
[Server] Find Commend에서 -exec 활용 하기 (0) | 2024.06.28 |
[Server] tar를 이용하여 원하는 파일만 압축 해제 방법 (0) | 2024.06.28 |
[Server] 다중 프로세스 종료(KILL) 방법 (0) | 2024.06.28 |