MDI-Ldap-user-creation Issue: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
[[Category: | [[Category: Tetra Clients]] | ||
[Category: MDI] | [[Category: MDI]] | ||
== '''Issue''' == | == '''Issue''' == | ||
Customer is Unable to create the user with the provided script. | |||
== '''Analysis''' == | == '''Analysis''' == | ||
During Creation of the User got the below Error. | |||
error (80) additional info: entry store failed | error (80) additional info: entry store failed | ||
| Line 19: | Line 19: | ||
C.2.8. ldap_*: Internal (implementation specific) error (80) - additional info: entry index delete failed | C.2.8. ldap_*: Internal (implementation specific) error (80) - additional info: entry index delete failed | ||
This seems to be related with wrong ownership of the BDB's dir (/var/lib/ldap) and files. The files must be owned by the user that slapd runs as. | |||
chown -R ldap:ldap /var/lib/ldap | |||
| Line 28: | Line 28: | ||
chown ldap:ldap /var/lib/ldap/DB_EXAMPLE | chown ldap:ldap /var/lib/ldap/DB_EXAMPLE | ||
Only above file was not having ldap permission. | |||
reference : http://www.openldap.org/doc/admin24/appendix-common-errors.html | reference : http://www.openldap.org/doc/admin24/appendix-common-errors.html | ||
Latest revision as of 10:53, 10 July 2014
Issue[edit]
Customer is Unable to create the user with the provided script.
Analysis[edit]
During Creation of the User got the below Error.
error (80) additional info: entry store failed
Explaination[edit]
C.2.8. ldap_*: Internal (implementation specific) error (80) - additional info: entry index delete failed
This seems to be related with wrong ownership of the BDB's dir (/var/lib/ldap) and files. The files must be owned by the user that slapd runs as.
chown -R ldap:ldap /var/lib/ldap
Solution[edit]
chown ldap:ldap /var/lib/ldap/DB_EXAMPLE
Only above file was not having ldap permission.
reference : http://www.openldap.org/doc/admin24/appendix-common-errors.html