Advertisement
gregmark

Cinder Errors and cinder.conf

Apr 9th, 2015
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. Repeating error:
  2.  
  3. 2015-04-09 16:40:03 INFO [cinder.service] Started child 21162
  4. 2015-04-09 16:40:03 AUDIT [cinder.service] Starting cinder-volume node (version 2013.1)
  5. 2015-04-09 16:40:03 ERROR [cinder.service] Unhandled exception
  6. Traceback (most recent call last):
  7. File "/usr/lib/python2.7/dist-packages/cinder/service.py", line 224, in _start_child
  8. self._child_process(wrap.server)
  9. File "/usr/lib/python2.7/dist-packages/cinder/service.py", line 201, in _child_process
  10. launcher.run_server(server)
  11. File "/usr/lib/python2.7/dist-packages/cinder/service.py", line 95, in run_server
  12. server.start()
  13. File "/usr/lib/python2.7/dist-packages/cinder/service.py", line 342, in start
  14. self.manager.init_host()
  15. File "/usr/lib/python2.7/dist-packages/cinder/volume/manager.py", line 143, in init_host
  16. self.driver.check_for_setup_error()
  17. File "/usr/lib/python2.7/dist-packages/cinder/volume/drivers/rbd.py", line 68, in check_for_setup_error
  18. (stdout, stderr) = self._execute('rados', 'lspools')
  19. File "/usr/lib/python2.7/dist-packages/cinder/utils.py", line 190, in execute
  20. cmd=' '.join(cmd))
  21. ProcessExecutionError: Unexpected error while running command.
  22. Command: rados lspools
  23. Exit code: 1
  24. Stdout: ''
  25. Stderr: 'global_init: error reading config file.\n'
  26. 2015-04-09 16:40:04 INFO [cinder.service] Child 21162 exited with status 2
  27. 2015-04-09 16:40:04 INFO [cinder.service] Forking too fast, sleeping
  28. 2015-04-09 16:40:05 INFO [cinder.service] Started child 21165
  29.  
  30. Cinder delete error:
  31.  
  32. 2015-04-09 16:35:37 INFO [cinder.volume.manager] volume volume-48ff7183-1804-4fe7-b076-8806c0980ab9: deleting
  33. 2015-04-09 16:35:37 INFO [cinder.volume.manager] Clear capabilities
  34. 2015-04-09 16:35:38 ERROR [cinder.openstack.common.rpc.amqp] Exception during message handling
  35. Traceback (most recent call last):
  36. File "/usr/lib/python2.7/dist-packages/cinder/openstack/common/rpc/amqp.py", line 430, in _process_data
  37. rval = self.proxy.dispatch(ctxt, version, method, **args)
  38. File "/usr/lib/python2.7/dist-packages/cinder/openstack/common/rpc/dispatcher.py", line 133, in dispatch
  39. return getattr(proxyobj, method)(ctxt, **kwargs)
  40. File "/usr/lib/python2.7/dist-packages/cinder/volume/manager.py", line 427, in delete_volume
  41. {'status': 'error_deleting'})
  42. File "/usr/lib/python2.7/contextlib.py", line 24, in __exit__
  43. self.gen.next()
  44. File "/usr/lib/python2.7/dist-packages/cinder/volume/manager.py", line 416, in delete_volume
  45. self.driver.delete_volume(volume_ref)
  46. File "/usr/lib/python2.7/dist-packages/cinder/volume/drivers/rbd.py", line 145, in delete_volume
  47. volume['name'])
  48. File "/usr/lib/python2.7/dist-packages/cinder/utils.py", line 190, in execute
  49. cmd=' '.join(cmd))
  50. ProcessExecutionError: Unexpected error while running command.
  51. Command: rbd snap ls --pool volumes volume-48ff7183-1804-4fe7-b076-8806c0980ab9
  52. Exit code: 1
  53. Stdout: ''
  54. Stderr: 'global_init: error reading config file.\n'
  55.  
  56. cinder.conf
  57.  
  58. volume_driver = cinder.volume.driver.RBDDriver
  59. rootwrap_config = /etc/cinder/rootwrap.conf
  60. sql_connection = mysql://cinderUser:cinderPass@192.168.241.100/cinder
  61. api_paste_config = /etc/cinder/api-paste.ini
  62. volume_name_template = volume-%s
  63. volume_group = cinder-volumes
  64. verbose = True
  65. auth_strategy = keystone
  66. glance_api_version = 2
  67. rbd_pool = volumes
  68. rbd_user = volumes
  69. rbd_secret_uuid = d8c6a7a8-d0ce-8be3-557c-7dc40b255d7b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement