Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1.  
  2. dhcp_agent.ini
  3. +++++++++++++++++++++++++++++++
  4.  
  5. [DEFAULT]
  6. interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
  7. dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
  8. use_namespaces = True
  9.  
  10. ***************************
  11.  
  12. neutron.conf
  13. ==================
  14. [DEFAULT]
  15. core_plugin = ml2
  16. notification_driver=neutron.openstack.common.notifier.rpc_notifier
  17. verbose=True
  18. rabbit_host=172.16.0.237
  19. rpc_backend=neutron.openstack.common.rpc.impl_kombu
  20. service_plugins=router
  21. allow_overlapping_ips=True
  22. auth_strategy=keystone
  23. neutron_metadata_proxy_shared_secret=openstack
  24. service_neutron_metadata_proxy=True
  25. nova_admin_password=nova_pass
  26. notify_nova_on_port_data_changes=True
  27. notify_nova_on_port_status_changes=True
  28. nova_admin_auth_url=http://172.16.0.237:35357/v2.0
  29. nova_admin_tenant_id=service
  30. nova_url=http://172.16.0.237:8774/v2
  31. nova_admin_username=nova
  32. [keystone_authtoken]
  33. auth_host = 172.16.0.237
  34. auth_port = 35357
  35. auth_protocol = http
  36. admin_tenant_name = service
  37. admin_user = neutron
  38. admin_password = neutron_pass
  39. signing_dir = $state_path/keystone-signing
  40. rpc_backend = neutron.openstack.common.rpc.impl_kombu
  41. rabbit_host = 172.16.0.237
  42. rabbit_port = 5672
  43. notify_nova_on_port_status_changes = True
  44. notify_nova_on_port_data_changes = True
  45. nova_url = http://172.16.0.237:8774
  46. nova_admin_username = nova
  47. nova_admin_tenant_id =
  48. nova_admin_password = nova_pass
  49. nova_admin_auth_url = http://172.16.0.237:35357/v2.0
  50. [database]
  51. connection = mysql://neutron:neutron_dbpass@172.16.0.237/neutron
  52. [agent]
  53. root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
  54.  
  55.  
  56.  
  57.  
  58. LOGS dhcp-agent.log.1
  59. +++++++++++++++++++
  60.  
  61.  
  62. 2015-02-17 23:22:32.721 11723 ERROR neutron.agent.dhcp_agent [req-064346fa-2eb6-4229-a3dd-9bdde793f7e0 None] Failed reporting state!
  63. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent Traceback (most recent call last):
  64. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/dist-packages/neutron/agent/dhcp_agent.py", line 573, in _report_state
  65. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent self.state_rpc.report_state(ctx, self.agent_state, self.use_call)
  66. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/dist-packages/neutron/agent/rpc.py", line 72, in report_state
  67. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent return self.call(context, msg, topic=self.topic)
  68. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/dist-packages/neutron/openstack/common/rpc/proxy.py", line 129, in call
  69. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent exc.info, real_topic, msg.get('method'))
  70. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent Timeout: Timeout while waiting on RPC response - topic: "q-plugin", RPC method: "report_state" info: "<unknown>"
  71. 2015-02-17 23:22:32.721 11723 TRACE neutron.agent.dhcp_agent
  72. 2015-02-17 23:22:32.723 11723 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.126348 sec
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement