ldappaswordmodify不接受-w - 选项

时间:2014-02-19 13:38:28

标签: oracle opends

我使用的是OpenDS软件包(这是一个非常棒的LDAP软件),我有一个小问题,可以选择ldappasswordmodify命令

:~# ldappasswordmodify --version
OpenDS Directory Server 2.2.0
Build 20091123144827Z
--
           Name                 Build number         Revision number     
Extension: snmp-mib2605         2.2.0                6181        

~# ldappasswordmodify -h localhost -D "cn=Directory Manager" -w -  -a "dn:uid=user,ou=People,dc=acme,dc=org"An error occurred while attempting to connect to the Directory Server:  The
simple bind attempt failed
:~# ldappasswordmodify -h localhost -D "cn=Directory Manager" -w xxxxxxx  -a "dn:uid=user,ou=People,dc=acme,dc=org"
The LDAP password modify operation was successful
Generated Password:  F8F2R1W6V

我做了研究,我在Oracle网站上发现了这个: http://docs.oracle.com/cd/E19623-01/820-6171/ldappasswordmodify.html

-w, --bindPassword bindPassword

    Use the bind password when authenticating to the directory server. This option can be used for simple authentication as well as password-based SASL mechanisms. This option must not be used in conjunction with --bindPasswordFile. To prompt for the password, type -w -.

我做错了什么? 谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

我发现这条线正常工作:

    :~# read -s A ; ldappasswordmodify -h localhost -D "cn=Directory Manager" -w $A  -a "dn:uid=user,ou=People,dc=acme,dc=org"  
The LDAP password modify operation was successful 
Generated Password:  F8F2R1W6V

非常感谢