We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ca9e5 commit da8545dCopy full SHA for da8545d
README.md
@@ -648,7 +648,12 @@ node 'splunk-idx2.internal.corp.tld',
648
Optional. Used to create a local admin user with predefined hash, full
649
name and email This is a hash with 3 members:
650
651
- - `hash` (SHA512 hash of the admin password)
+ - `hash` (SHA512 hash of the admin password. To generate the hash use one of:
652
+
653
+ - `grub-crypt --sha-512` (RHEL/CENTOS)
654
+ - `mkpasswd -m sha-512` (Debian)
655
+ - `python -c 'import crypt,getpass; print(crypt.crypt(getpass.getpass(), crypt.mksalt(crypt.METHOD_SHA512)))'`
656
657
- `pass` (Plaintext password, only used for search heads to add search peers in distributed search)
658
- `fn` (Full name)
659
- `email` (Email address)
0 commit comments