centos 6.4 openldap 2.4 版本 系统认证无法更改密码

大城市里の小女人 提交于 2019-12-06 01:07:40

centos 6.4 openldap 2.4 版本 系统认证无法更改密码,错误提示:

     openldap: LDAP password information update failed: Insufficient access

tail /var/log/securce

    passwd: pam_unix(passwd:chauthtok): user "test" does not exist in /etc/passwd


解决方案:

   在 sldap.conf 中加入:

  


access to attrs=userPassword
by self write
by anonymous auth
by dn.base="cn=Manager,dc=mycompany,dc=com" write
by * none

access to *
by self write
by dn.base="cn=Manager,dc=mycompany,dc=com" write
by * read

上面行最主要的加在database config 前面,否则不生效。

然后执行

rm -rf /etc/openldap/slapd.d/*
slaptest -f /etc/openldap/slapd.conf -F /etc/openldap/slapd.d
chown -R ldap:ldap /etc/openldap/slapd.d
service slapd restart

百度空间:http://hi.baidu.com/nessus1/item/2425dc4cdcb2251c896d10d3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!