Guest User

Untitled

a guest
May 10th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. nova.conf file ....
  2. **********************
  3.  
  4. [DEFAULT]
  5. verbose = True
  6. network_api_class = nova.network.neutronv2.api.API
  7. security_group_api = neutron
  8. linuxnet_interface_driver = nova.network.linux_net.NeutronLinuxBridgeInterfaceDriver
  9. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  10. my_ip = 172.168.1.101
  11. auth_strategy = keystone
  12. rpc_backend = rabbit
  13. dhcpbridge_flagfile=/etc/nova/nova.conf
  14. dhcpbridge=/usr/bin/nova-dhcpbridge
  15. logdir=/var/log/nova
  16. state_path=/var/lib/nova
  17. lock_path=/var/lock/nova
  18. force_dhcp_release=True
  19. libvirt_use_virtio_for_bridges=True
  20. verbose=True
  21. ec2_private_dns_show_ip=True
  22. api_paste_config=/etc/nova/api-paste.ini
  23. enabled_apis=osapi_compute,metadata
  24. firewall_driver=nova.virt.firewall.NoopFirewallDriver
  25. ram_allocation_ratio=1.0
  26. reserved_host_memory_mb=0
  27. scheduler_use_baremetal_filters=True
  28. scheduler_tracks_instance_changes=False
  29. #compute_driver=nova.virt.ironic.IronicDriver
  30. compute_driver=libvirt.LibvirtDriver
  31. firewall_driver=nova.virt.firewall.NoopFirewallDriver
  32. scheduler_host_manager=nova.scheduler.ironic_host_manager.IronicHostManager
  33. ram_allocation_ratio=2
  34. reserved_host_memory_mb=0
  35. compute_manager=ironic.nova.compute.manager.ClusteredComputeManager
  36. scheduler_use_baremetal_filters=True
  37. scheduler_tracks_instance_changes=False
  38. cpu_allocation_ratio=20
  39.  
  40. [ironic]
  41.  
  42. # Ironic keystone admin name
  43. admin_username=ironic
  44.  
  45. #Ironic keystone admin password.
  46. admin_password=ironic123
  47.  
  48. # keystone API endpoint
  49. admin_url=http://controller:35357/v2.0
  50.  
  51. # Ironic keystone tenant name.
  52. admin_tenant_name=service
  53.  
  54. # URL for Ironic API endpoint.
  55. api_endpoint=http://controller:6385/v1
  56.  
  57.  
  58. [database]
  59. connection = mysql+pymysql://nova:nova123@controller/nova
  60.  
  61. [oslo_messaging_rabbit]
  62. rabbit_host = controller
  63. rabbit_userid = openstack
  64. rabbit_password = rabbit123
  65.  
  66. [keystone_authtoken]
  67. auth_uri = http://controller:5000
  68. auth_url = http://controller:35357
  69. auth_plugin = password
  70. project_domain_id = default
  71. user_domain_id = default
  72. project_name = service
  73. username = nova
  74. password = nova123
  75.  
  76. [vnc]
  77. vncserver_listen = $my_ip
  78. vnc_enabled=True
  79. vncserver_listen = 0.0.0.0
  80. vncserver_proxyclient_address = $my_ip
  81. vncserver_proxyclient_address = $my_ip
  82.  
  83. [glance]
  84. host = controller
  85.  
  86. [oslo_concurrency]
  87. lock_path = /var/lib/nova/tmp
  88.  
  89. [neutron]
  90. url = http://controller:9696
  91. auth_url = http://controller:35357
  92. auth_plugin = password
  93. project_domain_id = default
  94. user_domain_id = default
  95. region_name = RegionOne
  96. project_name = service
  97. username = neutron
  98. password = neutron123
  99. service_metadata_proxy = True
  100. metadata_proxy_shared_secret = bahubali
  101.  
  102. nova-compute file .....
  103. *********************
  104.  
  105. [DEFAULT]
  106. compute_driver=libvirt.LibvirtDriver
Add Comment
Please, Sign In to add comment