juno keystone driver persistence
I am following the install docs for Openstack juno release on Ubuntu 14.04. When configuring keystone I am trying to set the line:
driver = keystone.token.persistence.backends.sql.Token
however with this directive keystone will not start correctly however it doesn't seem to be creating any log files either.
When i remove this line keystone starts ok however I however I seem to be having problems further down the line with glance (Unsure if these two are related yet).
Here is the keystone.conf
cisco@kermit:~$ sudo grep -v ^# /etc/keystone/keystone.conf | grep -v ^$
[DEFAULT]
admin_token=XXXXXXXXXXXXXXX
verbose=True
[assignment]
[auth]
[cache]
[catalog]
[credential]
[database]
connection = mysql://keystone:Cisco123@controller/keystone
[ec2]
[endpoint_filter]
[federation]
[identity]
[kvs]
[ldap]
[matchmaker_ring]
[memcache]
[oauth1]
[os_inherit]
[paste_deploy]
[policy]
[revoke]
[signing]
[ssl]
[stats]
[token]
provider = keystone.token.providers.uuid.Provider
[trust]
[extra_headers]
Distribution = Ubuntu
cisco@kermit:~$
could you paste your keystone.conf in /etc/keystone/? This file is important for troubleshooting.
looks like you are not turning debug switch on, try to turn it on in /etc/keystone.conf by
then restart your keystone service and paste the keystone.log to paste.openstack.org
cisco@kermit:~$ sudo egrep '^debug|^verbose' /etc/keystone/keystone.conf debug=True verbose=True cisco@kermit:~$ sudo egrep ^driver /etc/keystone/keystone.conf driver = keystone.token.persistence.backends.sql.Token
but the /var/log/keystone folder is still empty.
Here you go. I managed to get the logs to console by running keystone-all
http://paste.openstack.org/show/138778/