Hi, Brian,
Yes, I looked at the manpage, but I still didn't get it. Maybe I'm too stupid.
I wanna delete the DN, i.e., "cn=Manager,dc=example,dc=com", I added into the directory.
So, according to the example in the manpage, I should just do
ldapdelete "cn=Manager,dc=example,dc=com"
"-x -w secret" is just for simple authentication. So, you mean I should do sth like
ldapdelete -D "dc=example,dc=com" "cn=Manager,dc=example,dc=com"
I tried, but still get ldap_bind: Invalid credentials (49)
Thanks a lot!
Tianyin
On Sun, Apr 15, 2012 at 09:34:41PM -0700, Tianyin Xu wrote:Did you look at the manpage for ldapdelete? E.g.:
> thx for the reply, Brian!
>
> yes, you are right. Could you tell me why the following command is wrong?
http://linux.die.net/man/1/ldapdelete
The DN you with to bind with needs to be specified with '-D', just
> ldapdelete "cn=Manager,dc=example,dc=com" -x -w secret
> ldap_bind: Invalid DN syntax (34)
> additional info: invalid DN
as your correct invocation does.
> Thanks a lot!