i installed Openstack from http://devstack.org/ to my Ubuntu 14.04 server Now i can't login to my dashboard from browser. i tried admin admin or admin secrete
What should i do ? Best Regards
i installed Openstack from http://devstack.org/ to my Ubuntu 14.04 server Now i can't login to my dashboard from browser. i tried admin admin or admin secrete
What should i do ? Best Regards
If you install the OpenStack using devstack, there is an file in the /devstack directory whose name is local.conf which contains all the service password that you defined during the installation.
In case, you don't get the admin password , use the service token (admin_token) in keystone.conf and update the password of admin
var ADMIN_TOKEN = $(grep admin_token /etc/keystone/keystone.conf | awk '{print $3}')
export SERVICE_TOKEN=$ADMIN_TOKEN
export OS_SERVICE_ENDPOINT=http://<ip>:35357/v2.0
keystone user-password-update --pass <newPassword> admin
The admin account's password is set in the localrc file that is part of the devstack installation. Look for ADMIN_PASSWORD
Insert admin as a user and ADMIN for password. I hope this will work for you.
© 2022 - 2024 — McMap. All rights reserved.
/etc/kolla/admin-openrc.sh
if you used the ansible script to deploy openstack. – Torruella