Advertisement
lucifer_chn

nova.conf

Oct 25th, 2012
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. [DEFAULT]
  3. logdir = /var/log/nova
  4. state_path = /var/lib/nova
  5. lock_path = /var/lib/nova/tmp
  6.  
  7. # LOGS/STATE
  8. verbose = True
  9.  
  10. # AUTHENTICATION
  11. auth_strategy = keystone
  12.  
  13. # SCHEDULER
  14. compute_scheduler_driver = nova.scheduler.filter_scheduler.FilterScheduler
  15.  
  16. # VOLUMES
  17. volume_group = nova-volumes
  18. volume_name_template = volume-%08x
  19. iscsi_helper = tgtadm
  20.  
  21. # DATABASE
  22. sql_connection = mysql://awcloud:awcloud@192.168.3.11/nova
  23.  
  24. # COMPUTE
  25. libvirt_type = kvm
  26. connection_type = libvirt
  27. instance_name_template = instance-%08x
  28. api_paste_config = /etc/nova/api-paste.ini
  29.  
  30. # APIS
  31. osapi_compute_extension = nova.api.openstack.compute.contrib.standard_extensions
  32. ec2_dmz_host = 192.168.3.3
  33.  
  34. # QPID
  35. qpid_hostname = 192.168.3.9
  36. # GLANCE
  37. image_service = nova.image.glance.GlanceImageService
  38. glance_api_servers = 192.168.3.8:9292
  39.  
  40. network_manager = nova.network.manager.FlatDHCPManager
  41. force_dhcp_release = True
  42. dhcpbridge = /usr/bin/nova-dhcpbridge
  43. dhcpbridge_flagfile = /etc/nova/nova.conf
  44. injected_network_template = /usr/share/nova/interfaces.template
  45. firewall_driver = nova.virt.libvirt.firewall.IptablesFirewallDriver
  46. my_ip = 192.168.3.3
  47. public_interface = eth0
  48. flat_network_bridge=vmbr
  49. flat_interface = eth0
  50. fixed_range = 10.0.0.0/8
  51. auto_assign_floating_ip = False
  52. flat_network_dhcp_start = 10.0.0.5
  53.  
  54. multi_host = True
  55.  
  56. libvirt_xml_template = /usr/share/nova/libvirt.xml.template
  57. libvirt_nonblocking = True
  58. vpn_client_template = /usr/share/nova/client.ovpn.template
  59. credentials_template = /usr/share/nova/novarc.template
  60. rpc_backend = nova.rpc.impl_qpid
  61. root_helper = sudo nova-rootwrap
  62.  
  63. ###### (StrOpt) location of vnc console proxy, in the form "http://127.0.0.1:6080/vnc_auto.html"
  64. novncproxy_base_url=http://192.168.3.3:6080/vnc_auto.html
  65. ###### (BoolOpt) enable vnc related features
  66. vnc_enabled=True
  67. ###### (StrOpt) keymap for vnc
  68. vnc_keymap=en-us
  69. ###### (StrOpt) Ip address on which instance vncserversshould listen
  70. vncserver_listen=127.0.0.1
  71. ###### (StrOpt) the address to which proxy clients (like nova-xvpvncproxy) should connect
  72. vncserver_proxyclient_address=127.0.0.1
  73. ###### (StrOpt) location of nova xvp vnc console proxy, in the form "http://127.0.0.1:6081/console"
  74. xvpvncproxy_base_url=http://192.168.3.3:6081/console
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement