apache2 crit 오류 파일 util_ldap.c, 85행, 어설션 "0" 실패

apache2 crit 오류 파일 util_ldap.c, 85행, 어설션 "0" 실패

hello world가 포함된 index.html 파일이 포함된 간단한 웹 서비스가 있고 LDAP 인증을 통해서만 웹 사이트에 액세스할 수 있도록 하려고 하는데 웹 사이트에 액세스하려고 하면 오류가 발생하기 시작합니다. 누군가 이 문제를 해결하는 방법을 알고 있을까요? 실수:

[Fri Dec 02 08:30:19.071039 2022] [ldap:crit] [pid 3659377] (13)Permission denied: [client x.x.x.x:58573] AH10134: LDAP cache lock failed
[Fri Dec 02 08:30:19.071176 2022] [core:crit] [pid 3659377] AH00102: [Fri Dec 02 08:30:19 2022] file util_ldap.c, line 85, assertion "0" failed

apache2 LDAP 구성 파일은 다음과 같습니다.

<Location />
 AuthType Basic
AuthName "Apache LDAP authentication"
AuthBasicProvider ldap
AuthLDAPURL "ldap://domain.xx.x:389/OU=Domain Users,DC=domain,DC=xx,DC=x?sAMAccountName"
AuthLDAPBindDN "CN=apache_ldap,OU=Apache,OU=Services Accounts,DC=domain,DC=xx,DC=x"
AuthLDAPBindPassword "pass"
Require valid-user

</Location>


apachectl -t -D DUMP_RUN_CFG
 ServerRoot: "/etc/apache2"
 Main DocumentRoot: "/etc/apache2/htdocs"
 Main ErrorLog: "/etc/apache2/logs/error_log"
 Mutex mpm-accept: using_defaults
 Mutex rewrite-map: dir="/run/apache2" mechanism=fcntl
 Mutex ssl-stapling-refresh: using_defaults
 Mutex ssl-stapling: using_defaults
 Mutex proxy: using_defaults
 Mutex ldap-cache: using_defaults
 Mutex ssl-cache: dir="/run/apache2" mechanism=fcntl
 Mutex default: dir="/var/run/apache2/" mechanism=sysvsem
 PidFile: "/run/apache2/httpd.pid"
 Define: DUMP_RUN_CFG
 Define: MODSEC_2.5
 Define: MODSEC_2.9
 User: name="nobody" id=99
 Group: name="nobody" id=99

서버 버전: Apache/2.4.54(cPanel) 여기에 이미지 설명을 입력하세요.

관련 정보