Advertisement
Guest User

consumer config

a guest
Jul 5th, 2012
869
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. allow bind_v2
  2.  
  3. include /etc/ldap/schema/core.schema
  4. include /etc/ldap/schema/cosine.schema
  5. include /etc/ldap/schema/nis.schema
  6. include /etc/ldap/schema/inetorgperson.schema
  7. include /etc/ldap/schema/samba.schema
  8.  
  9. pidfile /var/run/slapd/slapd.pid
  10. argsfile /var/run/slapd/slapd.args
  11.  
  12. modulepath /usr/lib/ldap
  13. moduleload back_bdb
  14.  
  15.  
  16. backend bdb
  17. database config
  18. rootdn "cn=admin,cn=config"
  19. rootpw config
  20.  
  21. database bdb
  22. suffix dc=gis,dc=de
  23. checkpoint 512 30
  24. directory "/var/lib/ldap"
  25. index objectclass,entryCSN,entryUUID eq
  26. cachesize 10000
  27. lastmod on
  28.  
  29. rootdn cn=admin,ou=ldapadmin,dc=gis,dc=de
  30. syncrepl rid=1
  31. provider=ldap://192.168.9.3:389
  32. type=refreshAndPersist
  33. retry="60 10 300 +"
  34. searchbase="dc=gis,dc=de"
  35. filter="(objectClass=*)"
  36. attrs="*,+"
  37. schemachecking=off
  38. bindmethod=simple
  39. binddn="cn=syncuser,ou=ldapadmin,dc=gis,dc=de"
  40. credentials=secret
  41.  
  42. access to attrs=userPassword
  43. by dn.regex=".*,ou=ldapadmin,dc=gis,dc=de" write
  44. by dn.regex=".*,ou=service-host,dc=gis,dc=de" read
  45. by anonymous auth
  46. by self write
  47. by * none
  48.  
  49. access to dn.regex="cn=admin,ou=ldapadmin,dc=gis,dc=de"
  50. by anonymous auth
  51. by self write
  52. by * none
  53.  
  54. access to dn.base="" by * read
  55.  
  56. access to *
  57. by dn.regex="ou=ldapadmin,dc=gis,dc=de" write
  58. by * read
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement