Update command for generating password (#17170)
The option to generate a password is --method=sha-512 instead of --method=SHA-512 which produces a hash not found error
This commit is contained in:
parent
dd51ddb844
commit
d29e9d7d3c
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ How do I generate crypted passwords for the user module?
|
||||||
|
|
||||||
The mkpasswd utility that is available on most Linux systems is a great option::
|
The mkpasswd utility that is available on most Linux systems is a great option::
|
||||||
|
|
||||||
mkpasswd --method=SHA-512
|
mkpasswd --method=sha-512
|
||||||
|
|
||||||
If this utility is not installed on your system (e.g. you are using OS X) then you can still easily
|
If this utility is not installed on your system (e.g. you are using OS X) then you can still easily
|
||||||
generate these passwords using Python. First, ensure that the `Passlib <https://code.google.com/p/passlib/>`_
|
generate these passwords using Python. First, ensure that the `Passlib <https://code.google.com/p/passlib/>`_
|
||||||
|
|
Loading…
Reference in a new issue