Reset passwordretrycount for all users
From Brandonhutchinson.com
(Difference between revisions)
| (5 intermediate revisions not shown.) | |||
| Line 1: | Line 1: | ||
| - | Quick steps to reset '' | + | Quick steps to reset ''passwordRetryCount'' to 0 for all users in the LDAP ''passwd'' database: |
| - | $ | + | $ '''ldaplist passwd | grep -v '^$' | \ |
| - | + | > '''while read LINE ; do /bin/echo \ | |
| - | + | > '''"$LINE\nchangetype: modify\nreplace: passwordretrycount\npasswordretrycount: 0\n" ; done | \''' | |
| + | > '''ldapmodify -h ''LDAP_server'' -D "cn=Directory Manager" -w ''BIND_password''''' | ||
Current revision
Quick steps to reset passwordRetryCount to 0 for all users in the LDAP passwd database:
$ ldaplist passwd | grep -v '^$' | \ > while read LINE ; do /bin/echo \ > "$LINE\nchangetype: modify\nreplace: passwordretrycount\npasswordretrycount: 0\n" ; done | \ > ldapmodify -h LDAP_server -D "cn=Directory Manager" -w BIND_password
