Advertisement
kesaraw

cinder.conf in controller

Jul 22nd, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. [DEFAULT]
  2. log_dir = /var/log/cinder
  3. state_path = /var/lib/cinder
  4. lock_path = /var/lib/cinder/tmp
  5. volumes_dir = /etc/cinder/volumes
  6. iscsi_helper = lioadm
  7. rootwrap_config = /etc/cinder/rootwrap.conf
  8. auth_strategy = keystone
  9. rpc_backend = rabbit
  10. my_ip = 192.168.122.1
  11. verbose = True
  12. #iscsi_ip_address=192.168.122.104
  13.  
  14. [database]
  15. connection = mysql://cinder:cinder123@controller.openstack/cinder
  16.  
  17. #[keystone_authtoken]
  18. #admin_tenant_name = %SERVICE_TENANT_NAME%
  19. #admin_user = %SERVICE_USER%
  20. #admin_password = %SERVICE_PASSWORD%
  21. #auth_host = 127.0.0.1
  22. #auth_port = 35357
  23. #auth_protocol = http
  24.  
  25. [oslo_messaging_rabbit]
  26. rabbit_host = controller.openstack
  27. rabbit_userid = openstack
  28. rabbit_password = rabbit123
  29.  
  30. [keystone_authtoken]
  31. auth_uri = http://controller.openstack:5000
  32. auth_url = http://controller.openstack:35357
  33. auth_plugin = password
  34. project_domain_id = default
  35. user_domain_id = default
  36. project_name = service
  37. username = cinder
  38. password = cinder123
  39.  
  40. [oslo_concurrency]
  41. lock_path = /var/lock/cinder
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement