[openstack-community] Fwd: quantum-server status is dead
Hello, I am trying to deploy openstack on three nodes - (1) controller node, (2) compute node and (3) network node. I am working on CentOS and following this tutorial https://access.redhat.com/site/documentation/en-US/Red_Hat_OpenStack/3/pdf/I... Now I am configuring Network Node. Network configuration starts at page 92. Firstly I would like to run quantum-server so I did everything from page 92 to 105. But something is not working. When I do " service quantum-server restart" the result is Stopping quantum: [FAILED] Starting quantum: [ OK ] And it happens all the time, that means that quantum-server works only a short period of time and it comes dead. *When I do* quantum-server --config-file /etc/quantum/quantum.conf --debug --verbose *the logs are as follows* INFO [quantum.service] Quantum service started, listening on 0.0.0.0:9696 2013-08-21 17:50:14 DEBUG [qpid.messaging.io.raw] SENT[2775e60]: '\x0f\x01\x00\x19\x00\x01\x00\x00\x00\x00\x00\x00\x04\n\x01\x00\x07\x00\x010\x01\xff\xff\xff\xff\x0f\x01\x00\ x19\x00\x01\x00\x00\x00\x00\x00\x00\x04\n\x01\x00\x07\x00\x010\x00\x00\x00\x00\x01' 2013-08-21 17:51:13 DEBUG [qpid.messaging.io.ops] SENT[2775e60]: ConnectionHeartbeat() 2013-08-21 17:51:13 DEBUG [qpid.messaging.io.raw] SENT[2775e60]: '\x0f\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x01\n\x00\x00' 2013-08-21 17:51:13 DEBUG [qpid.messaging.io.raw] READ[2775e60]: '\x0f\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x01\n\x00\x00' 2013-08-21 17:51:13 DEBUG [qpid.messaging.io.ops] RCVD[2775e60]: ConnectionHeartbeat() 2013-08-21 17:52:13 DEBUG [qpid.messaging.io.ops] SENT[2775e60]: ConnectionHeartbeat() 2013-08-21 17:52:13 DEBUG [qpid.messaging.io.raw] SENT[2775e60]: '\x0f\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x01\n\x00\x00' 2013-08-21 17:52:13 DEBUG [qpid.messaging.io.raw] READ[2775e60]: '\x0f\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x01\n\x00\x00' 2013-08-21 17:52:13 DEBUG [qpid.messaging.io.ops] RCVD[2775e60]: ConnectionHeartbeat() **that means that something is working. Also MySQL database on controller node sees that user quantum is logged. But the command *openstack-status* ends with** == Quantum services == quantum-server: dead quantum-dhcp-agent: inactive (disabled on boot) quantum-l3-agent: inactive (disabled on boot) quantum-linuxbridge-agent: dead (disabled on boot) quantum-openvswitch-agent: inactive (disabled on boot) openvswitch: active (disabled on boot) *Here are my config files* *api-paste.ini* [composite:quantum] use = egg:Paste#urlmap /: quantumversions /v2.0: quantumapi_v2_0 [composite:quantumapi_v2_0] use = call:quantum.auth:pipeline_factory noauth = extensions quantumapiapp_v2_0 keystone = authtoken keystonecontext extensions quantumapiapp_v2_0 [filter:keystonecontext] paste.filter_factory = quantum.auth:QuantumKeystoneContext.factory [filter:authtoken] paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory auth_host = 192.168.0.1 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = quantum admin_password = openstack [filter:extensions] paste.filter_factory = quantum.api.extensions:plugin_aware_extension_middleware_factory [app:quantumversions] paste.app_factory = quantum.api.versions:Versions.factory [app:quantumapiapp_v2_0] paste.app_factory = quantum.api.v2.router:APIRouter.factory *quantum.conf* [DEFAULT] sql_connection = mysql://quantum:openstack@192.168.0.1/ovs_quantum state_path = /var/lib/quantum lock_path = $state_path/lock bind_host = 0.0.0.0 bind_port = 9696 api_paste_config = api-paste.ini auth_strategy = keystone control_exchange = quantum notification_driver = quantum.openstack.common.notifier.rpc_notifier default_notification_level = INFO notification_topics = notifications rpc_backend = quantum.openstack.common.rpc.impl_qpid qpid_hostname = 192.168.0.1 core_plugin = quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2 [keystone_authtoken] auth_host = 192.168.0.1 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = quantum admin_password = openstack signing_dir = /var/lib/quantum/keystone-signing *and plugin.ini file, whick is linked to /etc/quantum /plugins/openvswitch/ovs_quantum _plugin.ini* [DATABASE] sql_connection = mysql://quantum:openstack@192.168.0.1/ovs_quantum reconnect_interval = 2 [OVS] tenant_network_type = gre tunnel_id_ranges = 1:1000 local_ip = 192.168.0.3 enable_tunneling = True [AGENT] polling_interval = 2 *I would appreciate any help and advice*
Hi Krzysztof, Thank you for your detailed question and choice of OpenStack! However, this list is for planning and managing community activities. For a good response, please ask your question on http://ask.openstack.org, or the general OpenStack Mailing List (https://wiki.openstack.org/wiki/MailingLists#General_List) :) Regards, Tom On 22/08/13 02:35, Krzysztof G wrote:
Hello,
I am trying to deploy openstack on three nodes - (1) controller node, (2) compute node and (3) network node.
I am working on CentOS and following this tutorial https://access.redhat.com/site/documentation/en-US/Red_Hat_OpenStack/3/pdf/I...
Now I am configuring Network Node. Network configuration starts at page 92. Firstly I would like to run quantum-server so I did everything from page 92 to 105. But something is not working.
When I do " service quantum-server restart" the result is
Stopping quantum: [FAILED]
Starting quantum: [ OK ]
And it happens all the time, that means that quantum-server works only a short period of time and it comes dead.
*When I do*
quantum-server --config-file /etc/quantum/quantum.conf --debug --verbose
*the logs are as follows*
INFO [quantum.service] Quantum service started, listening on 0.0.0.0:9696 <http://0.0.0.0:9696>
2013-08-21 17:50:14 DEBUG [qpid.messaging.io.raw] SENT[2775e60]: '\x0f\x01\x00\x19\x00\x01\x00\x00\x00\x00\x00\x00\x04\n\x01\x00\x07\x00\x010\x01\xff\xff\xff\xff\x0f\x01\x00\ x19\x00\x01\x00\x00\x00\x00\x00\x00\x04\n\x01\x00\x07\x00\x010\x00\x00\x00\x00\x01'
2013-08-21 17:51:13 DEBUG [qpid.messaging.io.ops] SENT[2775e60]: ConnectionHeartbeat()
2013-08-21 17:51:13 DEBUG [qpid.messaging.io.raw] SENT[2775e60]: '\x0f\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x01\n\x00\x00'
2013-08-21 17:51:13 DEBUG [qpid.messaging.io.raw] READ[2775e60]: '\x0f\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x01\n\x00\x00'
2013-08-21 17:51:13 DEBUG [qpid.messaging.io.ops] RCVD[2775e60]: ConnectionHeartbeat()
2013-08-21 17:52:13 DEBUG [qpid.messaging.io.ops] SENT[2775e60]: ConnectionHeartbeat()
2013-08-21 17:52:13 DEBUG [qpid.messaging.io.raw] SENT[2775e60]: '\x0f\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x01\n\x00\x00'
2013-08-21 17:52:13 DEBUG [qpid.messaging.io.raw] READ[2775e60]: '\x0f\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x01\n\x00\x00'
2013-08-21 17:52:13 DEBUG [qpid.messaging.io.ops] RCVD[2775e60]: ConnectionHeartbeat()
**that means that something is working. Also MySQL database on controller node sees that user quantum is logged. But the command
/openstack-status/ ends with**
== Quantum services ==
quantum-server: dead
quantum-dhcp-agent: inactive (disabled on boot)
quantum-l3-agent: inactive (disabled on boot)
quantum-linuxbridge-agent: dead (disabled on boot)
quantum-openvswitch-agent: inactive (disabled on boot)
openvswitch: active (disabled on boot)
*Here are my config files*
*api-paste.ini*
[composite:quantum] use = egg:Paste#urlmap /: quantumversions /v2.0: quantumapi_v2_0
[composite:quantumapi_v2_0] use = call:quantum.auth:pipeline_factory noauth = extensions quantumapiapp_v2_0 keystone = authtoken keystonecontext extensions quantumapiapp_v2_0
[filter:keystonecontext] paste.filter_factory = quantum.auth:QuantumKeystoneContext.factory
[filter:authtoken] paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory auth_host = 192.168.0.1 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = quantum admin_password = openstack
[filter:extensions] paste.filter_factory = quantum.api.extensions:plugin_aware_extension_middleware_factory
[app:quantumversions] paste.app_factory = quantum.api.versions:Versions.factory
[app:quantumapiapp_v2_0] paste.app_factory = quantum.api.v2.router:APIRouter.factory
*quantum.conf*
[DEFAULT]
sql_connection = mysql://quantum:openstack@192.168.0.1/ovs_quantum <http://quantum:openstack@192.168.0.1/ovs_quantum>
state_path = /var/lib/quantum
lock_path = $state_path/lock
bind_host = 0.0.0.0
bind_port = 9696
api_paste_config = api-paste.ini
auth_strategy = keystone
control_exchange = quantum
notification_driver = quantum.openstack.common.notifier.rpc_notifier
default_notification_level = INFO
notification_topics = notifications
rpc_backend = quantum.openstack.common.rpc.impl_qpid
qpid_hostname = 192.168.0.1
core_plugin = quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2
[keystone_authtoken]
auth_host = 192.168.0.1
auth_port = 35357
auth_protocol = http
admin_tenant_name = service
admin_user = quantum
admin_password = openstack
signing_dir = /var/lib/quantum/keystone-signing
*and plugin.ini file, whick is linked to /etc/quantum /plugins/openvswitch/ovs_quantum _plugin.ini*
[DATABASE]
sql_connection = mysql://quantum:openstack@192.168.0.1/ovs_quantum <http://quantum:openstack@192.168.0.1/ovs_quantum>
reconnect_interval = 2
[OVS] tenant_network_type = gre tunnel_id_ranges = 1:1000 local_ip = 192.168.0.3 enable_tunneling = True
[AGENT]
polling_interval = 2
*I would appreciate any help and advice*
_______________________________________________ Community mailing list Community@lists.openstack.org http://lists.openstack.org/cgi-bin/mailman/listinfo/community
participants (2)
-
Krzysztof G
-
Tom Fifield