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

Re: trouble with replication



I think I figured out what happened.

You apparently replaced the value(s) of the attribute at
with an empty value resulting in the LDIF:
	changetype: replace
	replace: at
	at: 

OpenLDAP 1.x does not support empty attribute values and
behaves oddly when faced with them.

You should instead delete the attribute using:
	changetype: delete
	delete: at

Note that OpenLDAP 1.x also does not support delete
via replace, i.e.:
	changetype: replace
	replace: at

This is considered an LDAPv3 feature.

	Kurt