Advertisement
Guest User

Untitled

a guest
May 9th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. My nova.conf
  2.  
  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
  9. --iscsi_helper=tgtadm
  10. --libvirt_use_virtio_for_bridges
  11. --connection_type=libvirt
  12. --root_helper=sudo nova-rootwrap
  13. --verbose
  14. --ec2_private_dns_show_ip
  15.  
  16. Guide's nova.conf
  17.  
  18. [DEFAULT]
  19.  
  20. # LOGS/STATE
  21. verbose=True
  22.  
  23. # AUTHENTICATION
  24. auth_strategy=keystone
  25.  
  26. # SCHEDULER
  27. compute_scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
  28.  
  29. # VOLUMES
  30. volume_group=nova-volumes
  31. volume_name_template=volume-%08x
  32. iscsi_helper=tgtadm
  33.  
  34. # DATABASE
  35. sql_connection=mysql://nova:yourpassword@192.168.206.130/nova
  36.  
  37. # COMPUTE
  38. libvirt_type=qemu
  39. connection_type=libvirt
  40. instance_name_template=instance-%08x
  41. api_paste_config=/etc/nova/api-paste.ini
  42. allow_resize_to_same_host=True
  43.  
  44. # APIS
  45. osapi_compute_extension=nova.api.openstack.compute.contrib.standard_extensions
  46. ec2_dmz_host=192.168.206.130
  47. s3_host=192.168.206.130
  48.  
  49. # RABBITMQ
  50. rabbit_host=localhost
  51. rabbit_password=yourpassword
  52.  
  53. # GLANCE
  54. image_service=nova.image.glance.GlanceImageService
  55. glance_api_servers=192.168.206.130:9292
  56.  
  57. # NETWORK
  58. network_manager=nova.network.manager.FlatDHCPManager
  59. force_dhcp_release=True
  60. dhcpbridge_flagfile=/etc/nova/nova.conf
  61. firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
  62. my_ip=192.168.206.130
  63. public_interface=br100
  64. vlan_interface=eth0
  65. flat_network_bridge=br100
  66. flat_interface=eth0
  67. fixed_range=10.0.0.0/24
  68.  
  69. # NOVNC CONSOLE
  70. novncproxy_base_url=http://192.168.206.130:6080/vnc_auto.html
  71. vncserver_proxyclient_address=192.168.206.130
  72. vncserver_listen=192.168.206.130
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement