web-dev-qa-db-fra.com

Réplication LDAP Ubuntu 10.04

Réplication LDAP Ubuntu 10.04 - veuillez aider

J'essayais de configurer réplication LDAP .

Mais j'ai mis la mauvaise adresse IP dans le consumer_sync.ldif fichier et maintenant j'essaye de le réparer mais j'obtiens l'erreur suivante; Sil te plait aide moi!

jsmith@s2rweb2:/var/nfs$ Sudo ldapadd -c -Y EXTERNAL -H ldapi:/// -f consumer_sync.ldif
SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
modifying entry "cn=module{0},cn=config"
ldap_modify: Type or value exists (20)
    additional info: modify/add: olcModuleLoad: value #0 already exists

modifying entry "olcDatabase={1}hdb,cn=config"
ldap_modify: Type or value exists (20)
    additional info: modify/add: olcDbIndex: value #0 already exists
2
SJS

Le consumer_sync.ldif que vous utilisez essaie d'ajouter des attributs même ajoutés dans votre répertoire, vous devez maintenant écrire le fichier LDIF qui les modifie. Je ne sais pas si c'est possible, mais vous pouvez peut-être essayer de modifier la configuration avec Apache Directory Studio.

Vous devez adapter cela, c'est juste donné "tel quel" sans test.

# syncrepl specific indices
dn: olcDatabase={1}hdb,cn=config
changetype: modify
replace: olcSyncRepl
olcSyncRepl: rid=0 
 provider=ldap://Your new adress
 bindmethod=simple
 binddn= The Bind DN
 credentials= Your secret
 searchbase="dc=...,dc=..."
 logbase="cn=accesslog" 
 logfilter="(&(objectClass=auditWriteObject)(reqResult=0))"
 schemachecking=on 
 type=refreshAndPersist
 retry="60 +"
 syncdata=accesslog
-
replace: olcUpdateRef
olcUpdateRef: ldap://Your new adress
-
1
JPBlanc