error setting up keystone from KILO release
have a centos 7 minimal installation. i am trying to setup keystone service in KILO release. i am following the setps from the openstack docs site when i run service creation for keystone i get the below error:
#openstack service create --type identity --description "Openstack Identity" keystone
Traceback (most recent call last):
File "/usr/bin/openstack", line 6, in <module>
from openstackclient.shell import main
File "/usr/lib/python2.7/site-packages/openstackclient/shell.py", line 28, in <module>
from openstackclient.common import clientmanager
File "/usr/lib/python2.7/site-packages/openstackclient/common/clientmanager.py", line 25, in <module>
from openstackclient.api import auth
File "/usr/lib/python2.7/site-packages/openstackclient/api/auth.py", line 24, in <module>
from openstackclient.common import utils
File "/usr/lib/python2.7/site-packages/openstackclient/common/utils.py", line 24, in <module>
from oslo_utils import importutils
ImportError: No module named oslo_utils
the package/modules for OSLO are installed:
[root@controller ~]# rpm -qa | grep oslo
python-oslo-config-1.4.0-1.el7.centos.noarch
python-oslo-messaging-1.4.1-3.el7.centos.noarch
python-oslo-i18n-1.0.0-1.el7.centos.noarch
python-oslo-utils-1.0.0-1.el7.centos.noarch
python-oslo-db-1.0.2-2.el7.centos.noarch
python-oslo-serialization-0.3.0-1.el7.centos.noarch
if i try installing the modules via PIP, the service creation etc work fine but the config files created are different (file keystone-paste.ini missing) and when i try to request an authentication token from the Identity, it just hangs with out any response.
what am i missing?