From ff8964c748f190bc24afbef700fef4ddb1904e7e Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Tue, 8 Dec 2015 18:33:35 +0100 Subject: keystone: the 'sql' section is deprecated Attempting to use commands such as 'glance image-list' or 'keystone tenant-list' was resulting in various errors including 'error 500'. Examining the logs it was found that keystone was throwing the following warning: WARNING oslo_config.cfg [-] Option "connection" from group "sql" is deprecated. Use option "connection" from group "database". Examining the database I found that the keystone database existed but was empty. This indicates that some of the install scripts were failing, possibly due to issues connecting to the database due to a bad configuration. So taking the WARNING to heed I swapped the 'sql' section header for 'database' and now the database is properly created and keystone commands can be successfully executed. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-devtools/python/python-keystone/keystone.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-openstack') diff --git a/meta-openstack/recipes-devtools/python/python-keystone/keystone.conf b/meta-openstack/recipes-devtools/python/python-keystone/keystone.conf index 0ab1c3f..cdeb156 100644 --- a/meta-openstack/recipes-devtools/python/python-keystone/keystone.conf +++ b/meta-openstack/recipes-devtools/python/python-keystone/keystone.conf @@ -73,7 +73,7 @@ admin_token=%SERVICE_TOKEN% # or a module with notify() method: # onready = keystone.common.systemd -[sql] +[database] # The SQLAlchemy connection string used to connect to the database connection = postgresql://%DB_USER%:%DB_PASSWORD%@localhost/keystone -- cgit v1.2.3-54-g00ecf