Advertisement
Guest User

Untitled

a guest
May 8th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. cat /etc/nova/nova.conf
  2. [DEFAULT]
  3. dhcpbridge_flagfile=/etc/nova/nova.conf
  4. dhcpbridge=/usr/bin/nova-dhcpbridge
  5. logdir=/var/log/nova
  6. state_path=/var/lib/nova
  7. lock_path=/var/lock/nova
  8. force_dhcp_release=True
  9. libvirt_use_virtio_for_bridges=True
  10. verbose=True
  11. ec2_private_dns_show_ip=True
  12. api_paste_config=/etc/nova/api-paste.ini
  13. enabled_apis=osapi_compute,metadata
  14. rpc_backend = rabbit
  15. auth_strategy = keystone
  16. enable_instance_password = True
  17. my_ip = 10.10.1.21
  18. network_api_class = nova.network.neutronv2.api.API
  19. security_group_api = neutron
  20. linuxnet_interface_driver = nova.network.linux_net.NeutronLinuxBridgeInterfaceDriver
  21. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  22.  
  23. novncproxy_host = 10.10.1.21
  24. osapi_compute_listen = 10.10.1.21
  25. metadata_host = 10.10.1.21
  26. metadata_listen = 10.10.1.21
  27. xvpvncproxy_host = 10.10.1.21
  28.  
  29.  
  30. [database]
  31. connection = mysql+pymysql://nova:Welcome123@10.10.1.20/nova
  32.  
  33.  
  34. [oslo_messaging_rabbit]
  35. rabbit_hosts = 10.10.1.21:5672,10.10.1.22:5672,10.10.1.23:5672
  36. rabbit_userid = openstack
  37. rabbit_password = Welcome123
  38. rabbit_retry_interval = 1
  39. rabbit_retry_backoff = 2
  40. rabbit_max_retries = 0
  41. rabbit_durable_queues = true
  42. rabbit_ha_queues = True
  43. heartbeat_timeout_threshold = 60
  44. heartbeat_rate = 2
  45.  
  46.  
  47. [keystone_authtoken]
  48. auth_uri = http://10.10.1.20:5000
  49. auth_url = http://10.10.1.20:35357
  50. auth_plugin = password
  51. project_domain_id = default
  52. user_domain_id = default
  53. project_name = service
  54. username = nova
  55. password = Welcome123
  56.  
  57.  
  58. [vnc]
  59. vncserver_listen = $my_ip
  60. vncserver_proxyclient_address = $my_ip
  61.  
  62.  
  63. [glance]
  64. host = 10.10.1.21
  65.  
  66.  
  67. [oslo_concurrency]
  68. lock_path = /var/lib/nova/tmp
  69.  
  70.  
  71. [neutron]
  72. url = http://10.10.1.20:9696
  73. auth_url = http://10.10.1.20:35357
  74. auth_plugin = password
  75. project_domain_id = default
  76. user_domain_id = default
  77. region_name = RegionOne
  78. project_name = service
  79. username = neutron
  80. password = Welcome123
  81. service_metadata_proxy = True
  82. metadata_proxy_shared_secret = Welcome123
  83.  
  84.  
  85. [cinder]
  86. os_region_name = RegionOne
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement