Bob_Ross
Bob_Ross

Reputation: 11

Openstack Keystone Install Issues

When trying to create Keystone:

openstack domain create --description "An Example Domain" example

I get this return error below:

Could not clean up: 'ClientManager' object has no attribute 'sdk_connection'

I am not sure what this is in reference to...

following the Doc here https://docs.openstack.org//keystone/wallaby/doc-keystone.pdf

Upvotes: 0

Views: 914

Answers (1)

eandersson
eandersson

Reputation: 26342

This means that you aren't authenticated.

stack@ubuntu:~/devstack$ openstack domain create --description "An Example Domain" example 
Missing value auth-url required for auth plugin password
Could not clean up: 'ClientManager' object has no attribute 'sdk_connection'

If you are using devstack you can just source userrc_early inside the devstack folder.

stack@ubuntu:~/devstack$ source userrc_early 
stack@ubuntu:~/devstack$ openstack domain create --description "An Example Domain" example 
+-------------+----------------------------------+
| Field       | Value                            |
+-------------+----------------------------------+
| description | An Example Domain                |
| enabled     | True                             |
| id          | 1ddc2084930d492dbe39680cda5ef660 |
| name        | example                          |
| options     | {}                               |
| tags        | []                               |
+-------------+----------------------------------+

Upvotes: 0

Related Questions