Jump to content

MDI-Ldap-user-creation Issue: Difference between revisions

From TetraWiki
Amit (talk | contribs)
Created page with "[Category: MDI] == '''Issue''' == Customer is Unable to create the user with the provided script. == '''Analysis''' == During Creation of the User got the below Error. ..."
 
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[Category: MDI]
[[Category: Tetra Clients]]
 
[[Category: MDI]]


== '''Issue''' ==
== '''Issue''' ==


Customer is Unable to create the user with the provided script.
Customer is Unable to create the user with the provided script.




== '''Analysis''' ==
== '''Analysis''' ==


During Creation of the User got the below Error.
During Creation of the User got the below Error.


  error (80) additional info: entry store failed  
  error (80) additional info: entry store failed  
Line 17: 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.
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
  chown -R ldap:ldap /var/lib/ldap




Line 26: 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.
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