Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Openstack Dashboard default password [closed]

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

like image 818
itirazimvar Avatar asked Jun 09 '14 10:06

itirazimvar


3 Answers

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.

like image 94
flopez Avatar answered Oct 10 '22 06:10

flopez


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
like image 27
Durgadas Kamath Avatar answered Oct 10 '22 07:10

Durgadas Kamath


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

like image 36
Barak Avatar answered Oct 10 '22 05:10

Barak