Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Encrypted Results

Status
Not open for further replies.

FinnMan

Technical User
Feb 20, 2001
75
US
I just installed openldap on my linux box to query our company's LDAP server and so far everything is functional with one problem. I can query the server (using the following syntax)

ldapsearch -h dldapfe1 -D "cn=administrator, ou=members, o=companynet" -w password -u cn=abc123 -x

but the results come back encrypted. What am I missing to decrypt the results?

Regards,
FM
 
Finmann,

you may want to modify your ldapsearch just a little.
this is your record
ldapsearch -h dldapfe1 -D "cn=administrator, ou=members, o=companynet" -w password -u cn=abc123 -x

remove the -u & the -x from the record, also if you want to see the record ldif delimited use -L -b
ie.
ldapsearch -h dldapfe1 -D -w password -L -b "cn=administrator, ou=members, o=companynet" cn=abc123

regards,
jvillarruel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top