cinder-manage db sync Error
When i try to synchronise my data base with cinder i got this error :
#sudo cinder-manage db sync
Traceback (most recent call last):
File "/usr/bin/cinder-manage", line 62, in <module>
from oslo import messaging
ImportError: cannot import name messaging
here is my cinder.conf
file
[DEFAULT]
rootwrap_config = /etc/cinder/rootwrap.conf
api_paste_confg = /etc/cinder/api-paste.ini
iscsi_helper = tgtadm
volume_name_template = volume-%s
volume_group = cinder-volumes
verbose = True
auth_strategy = keystone
state_path = /var/lib/cinder
lock_path = /var/lock/cinder
volumes_dir = /var/lib/cinder/volumes
rpc_backend = cinder.openstack.common.rpc.impl_kombu
rabbit_host = 10.10.10.51
rabbit_port = 5672
rabbit_userid = guest
[database]
connection = mysql://user:user@10.10.10.51/cinder
[keystone_authtoken]
auth_uri = http://10.10.10.51:5000
auth_host = 10.10.10.51
auth_port = 35357
auth_protocol = http
admin_tenant_name = service
admin_user = cinder
admin_password = cinder
I did pip install oslo.messaging and the system told me that's already installed. And yes i verified that all packages listed are installed.