Advertisement
Guest User

Untitled

a guest
May 19th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. [DEFAULT]
  2. dhcpbridge_flagfile=/etc/nova/nova.conf
  3. dhcpbridge=/usr/bin/nova-dhcpbridge
  4. logdir=/var/log/nova
  5. state_path=/var/lib/nova
  6. lock_path=/var/lock/nova
  7. force_dhcp_release=True
  8. libvirt_use_virtio_for_bridges=True
  9. verbose=True
  10. ec2_private_dns_show_ip=True
  11. api_paste_config=/etc/nova/api-paste.ini
  12. enabled_apis=ec2,osapi_compute,metadata
  13. memcached_servers = localhost
  14. rpc_backend = rabbit
  15. rpc_thread_pool_size = 192
  16. executor_thread_pool_size = 192
  17. rpc_conn_pool_size = 256
  18. rpc_response_timeout = 120
  19. rpc_poll_timeout = 5
  20. auth_strategy = keystone
  21. my_ip = 10.10.21.31
  22. vnc_enabled = True
  23. vncserver_listen = 10.10.21.31
  24. network_api_class = nova.network.neutronv2.api.API
  25. security_group_api = neutron
  26. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  27. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  28. cert = /etc/nginx/ssl/cloud_combined.crt
  29. key_file = /etc/nginx/ssl/decrypted_key.key
  30.  
  31. [oslo_messaging_rabbit]
  32. rabbit_host = *********
  33. rabbit_userid = openstack
  34. rabbit_password = *********
  35. rpc_conn_pool_size = 120
  36. [oslo_concurrency]
  37. lock_path = /var/lib/nova/tmp
  38. [keystone_authtoken]
  39. auth_uri = *********
  40. auth_url = *********
  41. auth_plugin = password
  42. project_domain_id = default
  43. user_domain_id = default
  44. project_name = service
  45. username = nova
  46. password = *********
  47. memcached_servers = localhost
  48. [database]
  49. connection = *********
  50. connection_debug=5
  51. use_tpool = True
  52. max_pool_size = 64
  53. [glance]
  54. host = 10.10.21.32
  55. [neutron]
  56. url = *********
  57. auth_strategy = keystone
  58. admin_auth_url = *********
  59. admin_tenant_name = service
  60. admin_username = neutron
  61. admin_password = *********
  62. service_metadata_proxy = True
  63. metadata_proxy_shared_secret = *********
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement