Thanks, after playing with this a bit it worked perfectly.
Cheers,
Casey
On Fri, Mar 18, 2011 at 8:57 AM, harry.jede@arcor.de wrote:
Casey Jordan wrote:
Hi group,
I hope this is the right list to post this under. I have been having a problem connecting to an ldap server I just set up on ubuntu 10.10
I can use ldapsearch locally and get good results.
but when I try to connect remotely IE:
*sudo ldapsearch -xLLL -W -H ldap://ice.rit.edu -d1 "dc=easydita,dc=com"*
RTM "man ldapsearch" should help
-W prompt for a password. You haven't supply a userDN to match. So the user is anonymous, which do not have a password. Just press <enter> for noPassword.
"dc=easydita,dc=com" I asume this should be your baseDN. You must provide a "-b", ie -b "dc=easydita,dc=com"
If you want to connect as an user with password, try:
-W -D "cn=admin,dc=easydita,dc=com"
You don't need to specify a '*' as attribute list, it is the default.
--
Harry Jede