Problem LDAP 389-ds


 
Thread Tools Search this Thread
Special Forums Cybersecurity Problem LDAP 389-ds
# 1  
Old 06-21-2010
Problem LDAP 389-ds

Hello



I have install directory server but i can't change the password of user!!! I have used this command:
Code:
  [root@xxxx]# ldappasswd -x -D "cn=directory manager" -W  "uid=xxxxx,ou=xxxx,dc=xxx,dc=xx" -S
  New password:
  Re-enter new password:
  Enter LDAP Password:
  Result: Confidentiality required (13)
  Additional info: Operation requires a secure connection.

IMPORTANT: This command works on OpenLDAP, I've already tested! Where is the error?
Thanks in advice!

Last edited by pludi; 06-21-2010 at 06:36 AM.. Reason: code tags, please...
# 2  
Old 07-01-2010
It's wanting you to use SSL, hopefully you have the port enabled. Add -p 636 to your string:

Code:
 [root@xxxx]# ldappasswd -x -p 636 -D "cn=directory manager" -W  "uid=xxxxx,ou=xxxx,dc=xxx,dc=xx" -S

Cheers,

Keith
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

LDAP Client not connecting to LDAP server

I have very limited knowledge on LDAP configuration and have been trying fix one issue, but unsuccessful. The server, I am working on, is Solaris-10 zone. sudoers is configured on LDAP (its not on local server). I have access to login directly on server with root, but somehow sudo is not working... (9 Replies)
Discussion started by: solaris_1977
9 Replies

2. Solaris

Solaris LDAP group problem

I have a test environment which is running RedHat 6.5 Identity management. On the lab network are two Solaris 10 (U11) machines. I can successfully log into the S10 machines using the ldap username/passwords. However, I have a problem with groups and although I found through an internet search one... (3 Replies)
Discussion started by: cjhilinski
3 Replies

3. Linux

Ssh authentication using 389 Directory server

I am trying LDAP authentication for users logged in CentOS by PAM. Also I have disabled(off) nsslapd-anonymous-access flag to restrict anonymous access by providing the binddn and bindpw. I have changed binddn and bindpw in /etc/ldap.conf for PAM to bind with LDAP to authenticate user. ie) When... (1 Reply)
Discussion started by: shri_22ram
1 Replies

4. UNIX for Advanced & Expert Users

something like LDAP Administrator 2011.1 "LDAP-SQL" but for the CLI

Hi I am searching a tool like "LDAP Administrator 2011.1"/ "LDAP-SQL" but for the CLI. Wish to use LDAP-SQL in scripts (non Windows GUI environment) http://ldapadministrator.com/resources/english/2011.1/images/sqlquery_large.png Softerra LDAP Administrator 2011.1 - What's New OS is... (2 Replies)
Discussion started by: slashdotweenie
2 Replies

5. Red Hat

Can not connect to 389-ds via 389-console

Hi guys, I have installed 389-ds on a fedora 15 test machine. both dirsrv and dirsrv-admin is running. Also both ns-slapd and httpd.worker is running. here is netstat -antp result: tcp 0 0 0.0.0.0:9830 0.0.0.0:* LISTEN 868/httpd.worker tcp 0 0 :::389 :::* ... (4 Replies)
Discussion started by: majid.merkava
4 Replies

6. UNIX for Dummies Questions & Answers

ldap search problem

I am posting in this section because in this regard I am a Dummy. I know very little about ldap. We have a couple of ldap registries running on an AIX box. I can connect into those registries using an openldap browser. But I am trying to run some queries against the registry on the server itself,... (1 Reply)
Discussion started by: fwellers
1 Replies

7. Solaris

LDAP Problem during Kerberos setting for Win server 03 Active Directory

Hi, FYI, I'm new in Solaris I'm trying to use Kerberos on authenticating LDAP Client with the Active Directory on Windows Server 2003 on both Solaris 10 5/08 and Solaris 10 9/10 by referring to the pdf file kerberos_s10.pdf available at sun official site. ... (0 Replies)
Discussion started by: chongzh
0 Replies

8. Red Hat

problem in open ldap in centos

Hi I am trying to use open ldap in centos. I have installed all the packaged. When I try to use slappasswd to encrypt the password, it does nothing. I searched for the file and I found out that it is in /usr/sbin and that the file is link to slapd. However slapd doesn't encrypt anything. ... (0 Replies)
Discussion started by: programAngel
0 Replies

9. Programming

problem with ldap search using c

hi all i m writin a c program to search ldap db for values. i used the following code after search result return a value >0 if (result==1) { entry=ldap_first_entry(ld,msg); for(....;....;...) { // code to store the data values } } i m gettin an error at... (1 Reply)
Discussion started by: mridula
1 Replies
Login or Register to Ask a Question