http://httpd.apache.org/docs/2.2/programs/htpasswd.html
htpasswd
htpasswd [ -c ] [ -m ] [ -D ] passwdfile username
htpasswd -b [ -c ] [ -m | -d | -p | -s ] [ -D ] passwdfile username password
htpasswd -n [ -m | -d | -s | -p ] username
htpasswd -nb [ -m | -d | -s | -p ] username password
htpasswd /usr/local/etc/apache/.htpasswd-users jsmith
Adds or modifies the password for user jsmith
. The user is prompted for the password. The password will be encrypted using the modified Apache MD5 algorithm. If the file does not exist, htpasswd
will do nothing except return an error.
htpasswd -c /home/doe/public_html/.htpasswd jane
Creates a new file and stores a record in it for user jane
. The user is prompted for the password. If the file exists and cannot be read, or cannot be written, it is not altered and htpasswd
will display a message and return an error status.
htpasswd -db /usr/web/.htpasswd-all jones Pwd4Steve
评论
发表评论