Advertisement
Guest User

Untitled

a guest
Jul 8th, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. root@compute1:/home/necadmin/RAIES#
  2. root@compute1:/home/necadmin/RAIES# clear
  3. root@compute1:/home/necadmin/RAIES# cat /etc/nova/nova.conf
  4. [DEFAULT]
  5.  
  6. auth_strategy = keystone
  7.  
  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.  
  28.  
  29. my_ip = 10.0.1.146
  30. vnc_enabled = True
  31. vncserver_listen = 0.0.0.0
  32. vncserver_proxyclient_address = 10.0.1.146
  33. novncproxy_base_url = http://controller:6080/vnc_auto.html
  34.  
  35. glance_host = controller
  36.  
  37.  
  38. network_api_class = nova.network.api.API
  39. security_group_api = nova
  40. firewall_driver = nova.virt.libvirt.firewall.IptablesFirewallDriver
  41. network_manager = nova.network.manager.FlatDHCPManager
  42. network_size = 254
  43. allow_same_net_traffic = False
  44. multi_host = True
  45. send_arp_for_ha = True
  46. share_dhcp_address = True
  47. force_dhcp_release = True
  48. flat_network_bridge = br100
  49. flat_interface = eth1
  50. public_interface = eth1
  51.  
  52.  
  53.  
  54. [database]
  55. # The SQLAlchemy connection string used to connect to the database
  56. connection = mysql://nova:abc123@controller/nova
  57.  
  58. [keystone_authtoken]
  59. auth_uri = http://controller:5000
  60. auth_host = controller
  61. auth_port = 35357
  62. auth_protocol = http
  63. admin_tenant_name = service
  64. admin_user = nova
  65. admin_password = abc123
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement