Advertisement
Guest User

Untitled

a guest
Feb 24th, 2014
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 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. debug = True
  6. state_path=/var/lib/nova
  7. lock_path=/var/lock/nova
  8. force_dhcp_release=True
  9. iscsi_helper=tgtadm
  10. rpc_backend=nova.openstack.common.rpc.impl_kombu
  11. libvirt_use_virtio_for_bridges=True
  12. connection_type=libvirt
  13. root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
  14. enabled_apis=ec2,osapi_compute,metadata
  15. api_paste_config=/etc/nova/api-paste.ini
  16. ec2_private_dns_show_ip=True
  17. volumes_path=/var/lib/nova/volumes
  18.  
  19. sql_connection = postgresql://dbuser:password@127.0.0.1:5432/nova
  20.  
  21. rabbit_host=127.0.0.1
  22. rabbit_port=5672
  23. rabbit_userid = guest
  24. rabbit_password = guest
  25. rabbit_virtual_host=/
  26.  
  27. auth_strategy=keystone
  28.  
  29.  
  30. network_api_class=nova.network.neutronv2.api.API
  31. neutron_url=http://127.0.0.1:9696
  32. neutron_auth_strategy=keystone
  33. neutron_admin_tenant_name=service
  34. neutron_admin_username=neutron
  35. neutron_admin_password=service_pass
  36. neutron_admin_auth_url=http://127.0.0.1:35357/v2.0
  37.  
  38.  
  39. libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtGenericVIFDriver
  40.  
  41. linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver
  42.  
  43. firewall_driver=nova.virt.firewall.NoopFirewallDriver
  44. security_group_api=neutron
  45.  
  46. service_neutron_metadata_proxy=true
  47. neutron_metadata_proxy_shared_secret=password
  48.  
  49.  
  50. volume_api_class=nova.volume.cinder.API
  51.  
  52. glance_api_servers=127.0.0.1:9292
  53. image_service=nova.image.glance.GlanceImageService
  54.  
  55. novnc_enable=true
  56. novncproxy_port=6080
  57. novncproxy_host=10.1.8.243
  58. novncproxy_base_url=http://10.1.8.243:6080/vnc_auto.html
  59.  
  60. vncserver_listen=0.0.0.0
  61.  
  62. [keystone_authtoken]
  63. admin_tenant_name = service
  64. admin_user = nova
  65. admin_password = service_pass
  66. auth_host = 127.0.0.1
  67. auth_port = 35357
  68. auth_protocol = http
  69. signing_dir = /tmp/keystone-signing-nova
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement