tldr/pages/common/htpasswd.md

29 lines
789 B
Markdown
Raw Normal View History

2016-11-12 17:35:52 +00:00
# htpasswd
> Create and manage htpasswd files to protect web server directories using basic authentication.
2019-06-07 11:58:29 +01:00
> More information: <https://httpd.apache.org/docs/current/programs/htpasswd.html>.
2016-11-12 17:35:52 +00:00
- Create/overwrite htpasswd file:
`htpasswd -c {{path/to/file}} {{username}}`
2016-11-12 17:35:52 +00:00
- Add user to htpasswd file or update existing user:
`htpasswd {{path/to/file}} {{username}}`
2016-11-12 17:35:52 +00:00
2016-11-13 12:46:43 +00:00
- Add user to htpasswd file in batch mode without an interactive password prompt (for script usage):
2016-11-12 17:35:52 +00:00
`htpasswd -b {{path/to/file}} {{username}} {{password}}`
2016-11-12 17:35:52 +00:00
- Delete user from htpasswd file:
`htpasswd -D {{path/to/file}} {{username}}`
2016-11-12 17:35:52 +00:00
- Verify user password:
`htpasswd -v {{path/to/file}} {{username}}`
- Display a string with username (plain text) and password (md5):
`htpasswd -nbm {{username}} {{password}}`