devstack does not start when enabling neutron
I am getting this error:
2013-09-19 18:07:45 + /usr/local/bin/neutron-db-manage --config-file /etc/neutron/neutron.conf --con
fig-file /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini upgrade head
2013-09-19 18:07:45 Traceback (most recent call last):
2013-09-19 18:07:45 File "/usr/local/bin/neutron-db-manage", line 6, in <module>
2013-09-19 18:07:45 from neutron.db.migration.cli import main
2013-09-19 18:07:45 ImportError: No module named neutron.db.migration.cli
My localrc is:
DATABASE_PASSWORD=<password>
RABBIT_PASSWORD=<password>
SERVICE_TOKEN=<some token>
SERVICE_PASSWORD=<password>
ADMIN_PASSWORD=<password>
HOST_IP=192.168.210.204
disable_service n-net
enable_service q-svc
enable_service q-agt
enable_service q-dhcp
enable_service q-l3
enable_service q-meta
enable_service neutron
ENABLED_SERVICES=q-meta,q-lbaas,n-obj,n-cpu,n-sch,n-cauth,horizon,mysql,rabbit,cinder,c-api,c-vol,c-sc
h,n-cond,q-svc,q-agt,q-dhcp,q-l3,n-novnc,n-xvnc,q-lbaas,g-api,g-reg,key,n-api,n-crt
LOGFILE=$DEST/logs/stack.log
# SCREEN_LOGDIR=/opt/stack/logs
CINDER_BRANCH=stable/grizzly
GLANCE_BRANCH=stable/grizzly
HORIZON_BRANCH=stable/grizzly
KEYSTONE_BRANCH=stable/grizzly
NOVA_BRANCH=stable/grizzly
NEUTRON_BRANCH=stable/grizzly
SWIFT_BRANCH=stable/grizzly
SERVICE_TOKEN=devstack
SCHEDULER=nova.scheduler.chance.ChanceScheduler
enable_service swift
SWIFT_HASH=devstack
Hi, looks like DevStack missed out on installing that module, could you post the entire output ie your $DEST/logs/stack.log file here. Since there's quite a bit of text in there, you could paste the text at paste.openstack.org and post the corresponding link here.
Is your DevStack repository pointing to stable/grizzly? Also, if you made any changes to the code, DevStack won't update your repository, thus leading to not checking out to the desired branch.
Yep, That's right. Glad you got it to work :) Could you convert the above response to an answer so that the other people facing the same issue will know the solution. Thanks