Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions source/adminguide/hosts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -244,11 +244,10 @@ To change a Node's password:

.. code:: bash

java -classpath /usr/share/cloudstack-common/lib/jasypt-1.9.0.jar \
org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI \
encrypt.sh input="newrootpassword" \
password="databasekey" \
verbose=false
java -classpath /usr/share/cloudstack-common/lib/cloudstack-utils.jar \
com.cloud.utils.crypt.EncryptionCLI \
-p databasekey \
-i newrootpassword

#. Get the list of host IDs for the host in the cluster where you are
changing the password. You will need to access the database to
Expand Down
2 changes: 1 addition & 1 deletion source/adminguide/management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ add the encrypted password to

.. code:: bash

# java -classpath /usr/share/cloudstack-common/lib/jasypt-1.9.2.jar \ org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI encrypt.sh \ input="newpassword123" password="`cat /etc/cloudstack/management/key`" \ verbose=false
# java -classpath /usr/share/cloudstack-common/lib/cloudstack-utils.jar com.cloud.utils.crypt.EncryptionCLI -p `cat /etc/cloudstack/management/key` -i newpassword123


File encryption type
Expand Down