Openstack Dashboard default password

46k Views Asked by At

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

4

There are 4 best solutions below

0
On

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.

0
On

The admin account's password is set in the localrc file that is part of the devstack installation. Look for ADMIN_PASSWORD

1
On

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
0
On

Insert admin as a user and ADMIN for password. I hope this will work for you.