Advertisement
muthu0792

controllers_nova.conf

Aug 4th, 2014
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. [DEFAULT]
  2. dhcpbridge_flagfile=/etc/nova/nova.conf
  3. dhcpbridge=/usr/bin/nova-dhcpbridge
  4. logdir=/var/log/nova
  5. state_path=/var/lib/nova
  6. lock_path=/var/lock/nova
  7. force_dhcp_release=True
  8. iscsi_helper=tgtadm
  9. libvirt_use_virtio_for_bridges=True
  10. connection_type=libvirt
  11. root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
  12. verbose=True
  13. ec2_private_dns_show_ip=True
  14. api_paste_config=/etc/nova/api-paste.ini
  15. volumes_path=/var/lib/nova/volumes
  16. enabled_apis=ec2,osapi_compute,metadata
  17.  
  18. rpc_backend = rabbit
  19. rabbit_host = controller
  20. rabbit_password = RabbitPass#####
  21.  
  22. my_ip = 10.20.0.4
  23. vncserver_listen = 10.20.0.4
  24. vncserver_proxyclient_address = 10.20.0.4
  25. ######### 10.20.0.4 is controller_ip
  26.  
  27. auth_strategy = keystone
  28.  
  29. network_api_class = nova.network.neutronv2.api.API
  30. neutron_url = http://controller:9696
  31. neutron_auth_strategy = keystone
  32. neutron_admin_tenant_name = service
  33. neutron_admin_username = neutron
  34. neutron_admin_password = NEUTRON_DBPASS
  35. neutron_admin_auth_url = http://controller:35357/v2.0
  36. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  37. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  38. security_group_api = neutron
  39.  
  40. service_neutron_metadata_proxy = true
  41. neutron_metadata_proxy_shared_secret = METADATA_SECRET
  42.  
  43. [database]
  44. connection = mysql://nova:NOVA_DBPASS@controller/nova
  45.  
  46. [keystone_authtoken]
  47. auth_uri = http://controller:5000
  48. auth_host = controller
  49. auth_port = 35357
  50. auth_protocol = http
  51. admin_tenant_name = service
  52. admin_user = nova
  53. admin_password = Passw########
  54.  
  55. # I think This is not needed in controller but i included
  56. [rdp]
  57. enabled=true
  58. html5_proxy_base_url=http://10.1.3.8:8000/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement