Guest User

Untitled

a guest
Jul 10th, 2014
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. nova.conf =====>>
  2.  
  3. [DEFAULT]
  4.  
  5. auth_strategy = keystone
  6.  
  7. debug = True
  8. dhcpbridge_flagfile=/etc/nova/nova.conf
  9. dhcpbridge=/usr/bin/nova-dhcpbridge
  10. logdir=/var/log/nova
  11. state_path=/var/lib/nova
  12. lock_path=/var/lock/nova
  13. force_dhcp_release=True
  14. iscsi_helper=tgtadm
  15. libvirt_use_virtio_for_bridges=True
  16. connection_type=libvirt
  17. root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
  18. verbose=True
  19. ec2_private_dns_show_ip=True
  20. api_paste_config=/etc/nova/api-paste.ini
  21. volumes_path=/var/lib/nova/volumes
  22. enabled_apis=ec2,osapi_compute,metadata
  23.  
  24. rpc_backend = rabbit
  25. rabbit_host = controller
  26. rabbit_password = abc123
  27. public_interface = eth0
  28.  
  29.  
  30. libvirt_images_type=rbd
  31. libvirt_images_rbd_pool=volumes
  32. libvirt_images_rbd_ceph_conf=/etc/ceph/ceph.conf
  33. rbd_user=cinder
  34. rbd_secret_uuid=ff8b743e-c293-49a9-88f2-419ad38f7520
  35.  
  36.  
  37.  
  38. libvirt_inject_password=false
  39. libvirt_inject_key=false
  40. libvirt_inject_partition=-2
  41.  
  42.  
  43. my_ip = 10.0.1.146
  44. vnc_enabled = True
  45. vncserver_listen = 0.0.0.0
  46. vncserver_proxyclient_address = 10.0.1.146
  47. novncproxy_base_url = http://controller:6080/vnc_auto.html
  48.  
  49. glance_host = controller
  50.  
  51.  
  52. network_api_class = nova.network.api.API
  53. security_group_api = nova
  54. firewall_driver = nova.virt.libvirt.firewall.IptablesFirewallDriver
  55. network_manager = nova.network.manager.FlatDHCPManager
  56. network_size = 254
  57. allow_same_net_traffic = False
  58. multi_host = True
  59. send_arp_for_ha = True
  60. share_dhcp_address = True
  61. force_dhcp_release = True
  62. flat_network_bridge = br100
  63. flat_interface = eth1
  64. public_interface = eth1
  65.  
  66.  
  67.  
  68. [database]
  69. # The SQLAlchemy connection string used to connect to the database
  70. connection = mysql://nova:abc123@controller/nova
  71.  
  72. [keystone_authtoken]
  73. auth_uri = http://controller:5000
  74. auth_host = controller
  75. auth_port = 35357
  76. auth_protocol = http
  77. admin_tenant_name = service
  78. admin_user = nova
  79. admin_password = abc123
Advertisement
Add Comment
Please, Sign In to add comment