Ubuntu 10.04 Replicação LDAP

2

Replicação LDAP Ubuntu 10.04 - por favor ajude

Eu estava tentando configurar o Replicação LDAP .

Mas eu coloquei o endereço IP errado no arquivo consumer_sync.ldif e agora estou tentando corrigi-lo, mas estou recebendo o seguinte erro; por favor me ajude!

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
    
por SJS 18.04.2011 / 19:05

1 resposta

1

O consumer_sync.ldif que você usa tenta adicionar atributos adicionados ao seu diretório, agora você tem que escrever o arquivo LDIF que os modifica. Não sei se é possível, mas talvez você possa tentar modificar a configuração com o Apache Directory Studio.

Você deve adaptar isso, é só "como está" sem teste.

# 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
-
    
por JPBlanc 19.04.2011 / 05:07