与Apache的LDAP身份validation没有工作
我正在尝试将apache2与ldap服务器进行身份validation。 基本上我想实现,通过我的phpldapadmin GUI在LDAP中创build的用户应该能够loginApache。 现在我得到“auth_basic:error] [pid 29367] [client 122.15.156.72:26588] AH01618:用户pipe理员没有find:/”当试图从Apache与ldap用户login。 我正在使用apache 2.4.18和新版本的ldap。 我跟随了互联网上可用的许多文档进行configuration设置。 apache2.conf : <Directory /var/www/html> AuthName "Test User Authentication" AuthType basic AllowOverRide None AuthBasicProvider ldap AuthLDAPURL "ldap://<ipaddress>/CN=admin,DC=test,DC=com?sAMAccountName?sub?(ObjectClass=*)" #AuthLDAPURL "ldap://localhost:389/dc=comcast,dc=com?sub?" #AuthLDAPBindDN "cn=admin,dc=test,dc=com" #AuthLDAPBindDN "cn=test,cn=myGroup,ou=testGroup,dc=test,dc=com" AuthLDAPBindDN "[email protected]" #AuthLDAPBindPassword "v0QDRz34sQPuT4b1Ox7YqAL8uQ05jARn" AuthLDAPBindPassword admin123 Require valid-user #require ldap-user admin test #LDAPVerifyServerCert off #AuthzLDAPAuthoritative off </Directory> ldap.conf : # # […]