Devstack build Compute Node , the ./stack.sh ignore the Neutron setup
I am using this link to build my environment
http://networkstatic.net/updated-devstack-opendaylight-vm-image-for-openstack-icehouse/?hc_location=ufi
The little different is I am using 3 entity computer(not VM build this lab) , ODL using karaf and openstack controller setup well without problem. but when I setup my compute node , I am sure that I enable the neutron service on compute node local.conf here is my compute node local.conf:
ODL IP:192.168.5.23
OpenStack Controller IP & Hostname: 192.168.5.203 & openstack
OpenStack Compute IP & Hostname: 192.168.5.83 & compute
[[local|localrc]]
LOGFILE=stack.sh.log
LOG_COLOR=True
SCREEN_LOGDIR=/opt/stack/data/log
RECLONE=yes
disable_all_services
enable_service nova n-cpu neutron n-novnc rabbit
enable_service odl-compute
HOST_NAME=compute
HOST_IP=192.168.5.83
SERVICE_HOST_NAME=openstack #controller hostname
SERVICE_HOST=192.168.5.203
VNCSERVER_PROXYCLIENT_ADDRESS=192.168.5.83
VNCSERVER_LISTEN=0.0.0.0
Q_PLUGIN=ml2
ODL_MGR_IP=192.168.5.23
Q_ML2_PLUGIN_MECHANISM_DRIVERS=opendaylight,logger
ENABLE_TENANT_TUNNELS=True
Q_HOST=$SERVICE_HOST
MYSQL_HOST=$SERVICE_HOST
RABBIT_HOST=$SERVICE_HOST
GLANCE_HOSTPORT=$SERVICE_HOST:9292
KEYSTONE_AUTH_HOST=$SERVICE_HOST
KEYSTONE_SERVICE_HOST=$SERVICE_HOST
MYSQL_PASSWORD=jizzbear
RABBIT_PASSWORD=jizzbear
SERVICE_TOKEN=service
SERVICE_PASSWORD=admin
ADMIN_PASSWORD=admin
[[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]]
[agent]
minimize_polling=True
[ml2_odl]
url=http://192.168.5.23:8080/controller/nb/v2/neutron
username=admin
password=admin
looking good so far, then ./stack.sh , it will setup successful and print the Compute node IP but it is wrong here , below is the " sudo ovs-vsctl show":
compute@compute:/var/log$ sudo ovs-vsctl show
648b2c72-f78d-4d03-8c47-ff39b257cc89
Manager "tcp:192.168.5.23:6640"
is_connected: true
ovs_version: "2.0.2"
it miss the br-int , here is my /opt/stack , it without neutron and below /etc without neutron too:
compute@compute:/opt/stack$ ls
data logs nova noVNC requirements status
compute@compute:/opt/stack$
Does anyone meet this problem before? Please help me , it show nothing error , but fail to setup correctly. thanks for reading my problem.