openstack - Keystone connection fail -


i have install keystone following the guide ubuntu14.04

when try create service entity:

openstack service create --type identity \   --description "openstack identity" keystone 

i obtain:

info: urllib3.connectionpool starting new http connection (1): controller error: cliff.app internal server error (http 500) 

i sure have connection "controller",and mysql configured accept connections host.

my configuration file of keystone is:

[default] admin_token =admin  admin_port=35357  public_port=5000  [database]  connection = mysql://keystone:keystone@controller/keystone  [memcache]  servers = localhost:11211  [token]  provider = keystone.token.providers.uuid.provider  driver =keystone.token.persistence.backends.memcache.token  [revoke]  driver = keystone.contrib.revoke.backends.sql.revoke  [default]  verbose = true 

and apache configured shown in the guide.

where failing?

i dont' know if found , answer had problem. reason quite simple really, 1 of instructions on guide didn't work me. one:

# apt-get install ubuntu-cloud-keyring # echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu" \ "trusty-updates/kilo main" > /etc/apt/sources.list.d/cloudarchive-kilo.list 

so not using kilo packages older ones (urllib3 being 1 of them). how fix this? create file manually:

nano /etc/apt/sources.list.d/cloudarchive-kilo.list 

and write inside:

deb http://ubuntu-cloud.archive.canonical.com/ubuntu trusty-updates/kilo main

finish command, make update:

# apt-get update && apt-get dist-upgrade 

you should have lot of new updates now. there go, hope helps, fixed problem me @ least.

bruno


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -