mosquitto_passwd1Mosquitto ProjectCommandsmosquitto_passwdmanage password files for mosquittomosquitto_passwdhashpasswordfileusernamemosquitto_passwdhashpasswordfileusernamepasswordmosquitto_passwdpasswordfileDescriptionmosquitto_passwd is a tool for managing
password files for the mosquitto MQTT broker.
Usernames must not contain ":". Passwords are stored in a similar
format to
crypt3.
Options
Run in batch mode. This allows the password to be
provided at the command line which can be convenient
but should be used with care because the password will
be visible on the command line and in command
history.
Create a new password file. If the file already
exists, it will be overwritten. If the filename
is specified as a dash
then the output will be to stdout. This only really
makes sense with .
Delete the specified user from the password file.
Choose the hash to use. Can be one of
argon2id,
sha512-pbkdf2, or
sha512. Defaults to
argon2id. The
sha512 option is provided for
creating password files for use with Mosquitto 1.6
and earlier.
This option can be used to upgrade/convert a password
file with plain text passwords into one using hashed
passwords. It will modify the specified file. It does
not detect whether passwords are already hashed, so
using it on a password file that already contains
hashed passwords will generate new hashes based on the
old hashes and render the password file
unusable.
The password file to modify.The username to add/update/delete.The password to use when in batch mode.Exit Status
mosquitto_passwd returns zero on success or non-zero on error.
ExamplesAdd a user to a new password file:mosquitto_passwd -c /etc/mosquitto/passwd ralAdd a user to an existing password file:mosquitto_passwd /etc/mosquitto/passwd ralAdd a user to an existing password file, passing the password on the command line:mosquitto_passwd -b /etc/mosquitto/passwd ralz2Dr0BsvtZUpdate the password for a user in an existing password file:mosquitto_passwd /etc/mosquitto/passwd ralAdd a user to an existing password file using the sha512 hash for Mosquitto 1.6 compatibility:mosquitto_passwd -H sha512 /etc/mosquitto/passwd ralDelete a user from a password filemosquitto_passwd -D /etc/mosquitto/passwd ralEnvironment VariablesSee Alsomosquitto7mosquitto8mosquitto.conf5mqtt7AuthorRoger Light roger@atchoo.org