Thank you !
Remove the commend.
That's was a key of my problem. Thank you very much.
21.09.09, 18:34, "Jonathan Clarke" jonathan@phillipoux.net:
syncrepl rid=<> provider=ldap://server:389 type=refreshOnly interval=00:00:05:00 searchbase="dc=company,dc=com" filter="(objectClass=*)" scope=sub attrs="*" # schemachecking=off bindmethod=simple binddn="cn=adminuser,dc=company,dc=com" credentials=company-pass ###
Hi, There are several problems with this syncrepl statement. The first probably is the cause of your problem.
- The syncrepl statement in slapd.conf is actually just one line. You
can continue it on new lines by starting them with space. But, if you insert a comment (# character) anywhere, then the rest of the configuration will be ignored. So I think your binddn etc are being ignored. Remove the commend. 2) You have specified "attrs=*". This means "only replicate user attributes" thus excluding operational attributes. The default for attrs is "*,+" as specified in the man page. I really recommend not changing this value. Hope this helps, Jonathan