Change user password: Difference between revisions

From MediaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 13: Line 13:
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# user_id
# display your user_id
openstack user show \
openstack user show \
     --domain "${domain_name}" \
     --domain "${domain_name}" \
     ${domain_user}
     ${domain_user}


# Note the space at the start of the line. It prevents bash from saving this line to your bash history
# Leave the space at the start of the line. It prevents bash from saving this line to your bash history
  new_password=''
  new_password=''  
 
# Set your new password
openstack user set \
openstack user set \
     --domain "${domain_name}" \
     --domain "${domain_name}" \
Line 32: Line 34:
Log in to the stoney cloud [https://dashboard.stoney-cloud.com/dashboard dashboard] with the credentials you have received from us.  
Log in to the stoney cloud [https://dashboard.stoney-cloud.com/dashboard dashboard] with the credentials you have received from us.  


[[File:Debian VM Creation Dashboard manual 01.png|400px]]
[[File:Debian VM Creation Dashboard manual 01.png|600px]]


Click on your username in the top right corner and go to <code>Settings </code>.  
Click on your username in the top right corner and go to <code>Settings </code>.  
[[Image:Password_Change_1.png|600px]]


Select <code>Change Password</code> in the drop down menu on the left.  
Select <code>Change Password</code> in the drop down menu on the left.  
Here you can fill in your changes.
[[Image:Password_Change_2.png|600px]]


Here you can fill in your changes.
After that click on <code>Change</code> and log in again.
After that click on <code>Change</code> and log in again.


[[Image:Password_Change_3.png|600px]]


</tabber>
</tabber>


[[Category: Troubleshooting]]
[[Category: Troubleshooting]]

Latest revision as of 14:28, 15 July 2024

Overview

This page describes how to change the OpenStack password of a user.

Change password - CLI

Do this with a high privileges user:

# Set some variables
domain_name=""    # The OpenStack domain in which the user resided, for example: stepping stone AG
domain_user=""    # The OpenStack user name, for example: sst-mei
# display your user_id
openstack user show \
    --domain "${domain_name}" \
    ${domain_user}

# Leave the space at the start of the line. It prevents bash from saving this line to your bash history
 new_password='' 

# Set your new password
openstack user set \
    --domain "${domain_name}" \
    --password "${new_password}" \
    ${domain_user}

unset new_password

Change password - Dashboard

Log in to the stoney cloud dashboard with the credentials you have received from us.

Debian VM Creation Dashboard manual 01.png

Click on your username in the top right corner and go to Settings .

Password Change 1.png

Select Change Password in the drop down menu on the left. Here you can fill in your changes.

Password Change 2.png

After that click on Change and log in again.

Password Change 3.png