Open password for Openstack control panel

I installed Openstack from http://devstack.org/ on my Ubuntu 14.04 server. Now I can not enter my toolbar from a browser. I tried admin admin or admin secrete

What should I do? Regards

+4
source share
4 answers

If you install OpenStack using devstack, there is a file in the / devstack directory whose name is local.conf, which contains the entire service password that you defined during installation.

+4
source

, , (admin_token) keystone.conf

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
+2

The administrator account password is set in the localrc file, which is part of the devstack installation. Find ADMIN_PASSWORD

0
source

Insert admin as the user and ADMIN for the password. Hope this works for you.

-1
source

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


All Articles