How to manage users / passwords in devstack?

I installed devstack on a clean Ubuntu machine. I can access OpenStack's toolbar http://localhost/auth/login/. However, I have no idea how to manage users or my initial credentials.

Where is this information stored?

+2
source share
1 answer

Information is stored in the Keystone MySQL database. Do not edit the database directly!

You want to manage users through the Keystone CLI. To do this, you need to properly configure your DevStack admin admins.

cd devstack
source openrc admin admin
echo $OS_USERNAME
echo $OS_TENANT_NAME
echo $OS_PASSWORD

I put echo commands to show you how to detect your loans.

CLI Keystone, docs , , , , .

CLI , ,

cd devstack
source openrc
echo $OS_USERNAME
echo $OS_TENANT_NAME
echo $OS_PASSWORD
+4

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


All Articles