Advertisement
Guest User

Untitled

a guest
Nov 14th, 2014
238
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. debug=true
  3. dhcpbridge_flagfile = /etc/nova/nova.conf
  4. dhcpbridge = /opt/openstack/venv/nova/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. iscsi_helper = tgtadm
  10. libvirt_use_virtio_for_bridges = True
  11. connection_type = libvirt
  12. root_helper = sudo /opt/openstack/venv/nova/bin/nova-rootwrap /etc/nova/rootwrap.conf
  13. verbose = True
  14. ec2_private_dns_show_ip = True
  15. api_paste_config = /etc/nova/api-paste.ini
  16. volumes_path = /var/lib/nova/volumes
  17. enabled_apis = ec2,osapi_compute,metadata
  18.  
  19. rpc_backend = rabbit
  20. rabbit_host = 10.0.0.1
  21. rabbit_userid = openstack
  22. rabbit_password = [PASS]
  23.  
  24. my_ip = 10.0.1.1
  25. vncserver_listen = 0.0.0.0
  26. vncserver_proxyclient_address = 10.0.1.1
  27. novncproxy_base_url = http://192.168.1.13:6080/vnc_auto.html
  28.  
  29. glance_host = 10.0.0.1
  30.  
  31. auth_strategy = keystone
  32.  
  33. compute_driver = libvirt.LibvirtDriver
  34.  
  35. network_api_class = nova.network.neutronv2.api.API
  36. neutron_url = http://10.0.0.1:9696
  37. neutron_auth_strategy = keystone
  38. neutron_admin_tenant_name = service
  39. neutron_admin_username = neutron
  40. neutron_admin_password = [PASS]
  41. neutron_admin_auth_url = http://10.0.0.1:35357/v2.0
  42. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  43. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  44. security_group_api = neutron
  45.  
  46.  
  47. [database]
  48. connection = mysql+pymysql://nova:[PASS]@10.0.0.1/nova?charset=utf8&use_unicode=0
  49.  
  50. [keystone_authtoken]
  51. auth_uri = http://10.0.0.1:5000
  52. auth_host = 10.0.0.1
  53. auth_port = 35357
  54. auth_protocol = http
  55. admin_tenant_name = service
  56. admin_user = nova
  57. admin_password = [PASS]
  58.  
  59. [libvirt]
  60. virt_type = kvm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement