Openstack - Change Admin password for the Dashboard [closed]
Asked Answered
A

3

2

Where can I change the Admin Password for the Dasboard in Openstack?

I installed openstack with the packstack installer...

the password in the keystonerc_admin file doesn't work, too.

I use a CentOS 6.3 (and I have access to the config files)

username: admin password: admin/password/123/etc. don't work..

Alate answered 27/5, 2013 at 7:25 Comment(0)
A
9

SOLVED

$ export OS_SERVICE_TOKEN=$servicetoken(/etc/keystone/keystone.conf)
$ export OS_SERVICE_ENDPOINT=$http://ipoftheserver/v2.0

then use this syntax to change the password

$ keystone user-password-update --pass <password> <user id>
Alate answered 29/5, 2013 at 6:7 Comment(2)
Good answer, keystone user-password-update --pass <password> <user id> does the trick. If your keystonerc_admin file is accurate, and you just want to change the password, you can simply run source /some/path/keystonerc_admin before running keystone user-password-update --pass <password> <user id>.Piceous
devstack creates a user called admin. how does one find its user id so that we can change the password?Accomplished
U
1
openstack user password set --password <new-password> --original-password <current-admin-password>
Undermost answered 22/7, 2018 at 15:32 Comment(3)
source: webcache.googleusercontent.com/…Undermost
How does this command know which user to change? e.g. devstack creates an "admin" user. I need to change this. The ssh user is "stack".Accomplished
Did work for me on Xena. John Little: The command is for the openstack CLI client: docs.openstack.org/python-openstackclient/xena When you're authenticated on the horizon web interface with the admin user top left is your user when you click on it you can choose Openstack RC file from the dropdown. After CLI client is installed use source admin-openrc.sh and enter your current admin password to authenticate the client. As noted in docs.openstack.org/python-openstackclient/xena/cli/… it changes the password of the current user.Ferrosilicon
O
0

referring back to:

 $ export OS_SERVICE_TOKEN=$servicetoken(/etc/keystone/keystone.conf)
 $ export OS_SERVICE_ENDPOINT=$http://ipoftheserver/v2.0"

I'm getting a bash error saying

"bash :syntax error near unexpected token `('"

I've checked my spelling and validated the syntax but I'm still unable export that service token in bash on Debian 11.;

Obstruction answered 31/12, 2023 at 19:52 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.