Openstack - Change admin password for control panel

Where can I change the admin password for Dasboard in Openstack?

I installed openstack with packstack installer ...

the password in the keystonerc_admin file does not work either.

I am using CentOS 6.3 (and I have access to configuration files)

username: admin password: admin / password / 123 / etc. does not work.

+3
source share
1 answer

solvable

$ 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>
+9
source

Source: https://habr.com/ru/post/1543847/


All Articles