Paul Soucy paulsoucy1@gmail.com writes:
Hi,
I am running OpenLDAP 2.4 on Ubuntu 9.10. I am trying to get user passwords to be stored {SHA}. I understand the way to do this is by adding password-hash {SHA} line to the slapd.conf file. However, on Ubuntu 9.10 the /etc/slapd.conf is a directory not a file. What am I missing here?
manual page slapd-config(5) is the reference for configuration parameters of the config backend. You may modify the config backend by ldapmodify(1), or a decent gui tool like http://www.web2ldap.de
ldapmodify -D cn=config -W -H ldap://some.host dn: olcDatabase=frontend,cn=config changetype: modify add: olcPasswordHash olcPasswwordHAsh: SSHA
-Dieter