Advertisement
Guest User

Untitled

a guest
Sep 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. root@compute1-liberty:~# cat /etc/nova/nova.conf
  2. [DEFAULT]
  3. dhcpbridge_flagfile=/etc/nova/nova.conf
  4. dhcpbridge=/usr/bin/nova-dhcpbridge
  5.  
  6. logdir=/var/log/nova
  7. state_path=/var/lib/nova
  8.  
  9. force_dhcp_release=True
  10. libvirt_use_virtio_for_bridges=True
  11.  
  12. verbose = True
  13.  
  14. ec2_private_dns_show_ip=True
  15. api_paste_config=/etc/nova/api-paste.ini
  16. enabled_apis=ec2,osapi_compute,metadata
  17.  
  18. #rpc_backend = rabbit
  19. rpc_backend = nova.openstack.common.rpc.impl_kombu
  20.  
  21.  
  22. auth_strategy = keystone
  23.  
  24. my_ip = 10.10.1.16
  25.  
  26. network_api_class = nova.network.neutronv2.api.API
  27. security_group_api = neutron
  28. linuxnet_interface_driver = nova.network.linux_net.NeutronLinuxBridgeInterfaceDriver
  29. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  30.  
  31.  
  32. [oslo_messaging_rabbit]
  33. rabbit_use_ssl = True
  34. rabbit_port = 5671
  35. kombu_ssl_keyfile = /opt/client/key.pem
  36. kombu_ssl_certfile = /opt/client/cert.pem
  37. kombu_ssl_ca_certs = /opt/testca/cacert.pem
  38.  
  39. rabbit_host = controller-liberty
  40. rabbit_userid = openstack
  41. rabbit_password = 123456
  42.  
  43.  
  44. [keystone_authtoken]
  45. auth_uri = http://controller-liberty:5000
  46. auth_url = http://controller-liberty:35357
  47. auth_plugin = password
  48. project_domain_id = default
  49. user_domain_id = default
  50. project_name = service
  51. username = nova
  52. password = 123456
  53.  
  54. [vnc]
  55. enabled = True
  56. vncserver_listen = 0.0.0.0
  57. vncserver_proxyclient_address = $my_ip
  58. novncproxy_base_url = http://10.10.1.15:6080/vnc_auto.html
  59.  
  60. [glance]
  61. host = controller-liberty
  62.  
  63. [oslo_concurrency]
  64. lock_path = /var/lib/nova/tmp
  65.  
  66. [neutron]
  67. url = http://controller-liberty:9696
  68. auth_url = http://controller-liberty:35357
  69. auth_plugin = password
  70. project_domain_id = default
  71. user_domain_id = default
  72. region_name = RegionOne
  73. project_name = service
  74. username = neutron
  75. password = 123456
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement