Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- codeigniter
- 맥
- 공모주 청약 일정
- Eclipse
- linux
- css
- JavaScript
- 6월 공모주 청약 일정
- 공모주 청약
- MYSQL
- html
- jquery
- 7월 공모주 청약 일정
- java
- 코드이그나이터
- Oracle
- 자바스크립트
- 오라클
- 주식
- SQL
- 리눅스
- Stock ipo
- 제이쿼리
- php
- 주식 청약 일정
- Stock
- 공모주
- 주식 청약
- IPO
- 자바
Archives
- Today
- Total
개발자의 끄적끄적
[apache] 아파치 configuration error: couldn't perform authentication. AuthType not set! 해결방법 본문
개발/was & server
[apache] 아파치 configuration error: couldn't perform authentication. AuthType not set! 해결방법
효벨 2023. 5. 21. 01:00728x90
반응형
[apache] 아파치 configuration error: couldn't perform authentication. AuthType not set! 해결방법
apache 를 시작 혹은 재시작했는데,
아래와 같은 AuthType 오류가 뜨는 경우가 있습니다!
configuration error: couldn't perform authentication. AuthType not set!
그럴때는 해당 document_root 폴더의 권한 설정이 안되어서 그런겁니다!
바로 아래처럼 설정해주시면 됩니다!
1. apache 버전이 2.4 보다 낮을경우!
Order allow,deny
Allow from all
위 권한을 설정한 예는 아래와 같습니다!
<Directory "/var/www">
AllowOverride None
# Allow open access:
Order allow,deny
Allow from all
</Directory>
2. apache 버전이 2.4 이상일 경우!
Require all granted
위 권한을 설정한 예는 아래와 같습니다!
<Directory "/var/www">
AllowOverride None
# Allow open access:
Require all granted
</Directory>
참고들 하세요!
반응형
'개발 > was & server' 카테고리의 다른 글
Comments