Advertisement
intore

Untitled

Apr 23rd, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. #Basics
  2. include /etc/ldap/schema/core.schema
  3. include /etc/ldap/schema/cosine.schema
  4. include /etc/ldap/schema/nis.schema
  5. include /etc/ldap/schema/inetorgperson.schema
  6.  
  7. pidfile /var/run/slapd/slapd.pid
  8. argsfile /var/run/slapd/slapd.args
  9. loglevel none
  10.  
  11. modulepath /usr/lib/ldap
  12. moduleload back_hdb
  13.  
  14. #Database configuration
  15. database hdb
  16. suffix "dc=amahoro,dc=bi"
  17. rootdn "cn=Manager,dc=amahoro,dc=bi"
  18. rootpw {SSHA}XBLZ+TknuZHW3dirN2SE2fj3mYka3tkG
  19. directory /var/lib/ldap
  20. index objectClass,cn eq
  21.  
  22. #ACLs
  23. access to attrs=userPassword
  24. by anonymous auth
  25. by self write
  26. by * none
  27.  
  28. access to *
  29. by self write
  30. by * none
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement