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 |
Tags
- css
- 6월 공모주 청약 일정
- SQL
- Stock ipo
- 맥
- MYSQL
- Stock
- IPO
- 공모주 청약
- 오라클
- Oracle
- 리눅스
- 자바스크립트
- 코드이그나이터
- 자바
- 주식 청약 일정
- linux
- JavaScript
- java
- 주식
- 공모주 청약 일정
- 주식 청약
- php
- Eclipse
- html
- 7월 공모주 청약 일정
- jquery
- 공모주
- codeigniter
- 제이쿼리
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