[Date Prev][Date Next] [Chronological] [Thread] [Top]

syncrepl with ssl



Hi guys i have a slight problem with syncrepl only when using ssl.

When i use syncrepl without ssl the replication process works fine.

I can access the master ldap server fine over ssl as well as the consumer but replication doesn't work

Both have the same cacert

Here's the Consumer part of the slapd.conf:

syncrepl rid=1
       provider=ldaps://master.xxx.com:636
       binddn="cn=repadmin,dc=xxx,dc=com"
       bindmethod=simple
       searchbase="dc=xxx,dc=com"
       type=refreshOnly
       interval=00:01:00:00
       filter="(objectClass=*)"
       scope=sub
       attrs="*"
       schemachecking=off
       credentials=xxxxxx

If i change to this it works fine:

syncrepl rid=1
       provider=ldap://master.xxx.com:389
       binddn="cn=repadmin,dc=xxx,dc=com"
       bindmethod=simple
       searchbase="dc=xxx,dc=com"
       type=refreshOnly
       interval=00:01:00:00
       filter="(objectClass=*)"
       scope=sub
       attrs="*"
       schemachecking=off
       credentials=xxxxxx

Help is appreciated TIA
-James