Guest User

Untitled

a guest
Oct 23rd, 2012
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. Nova.conf
  2. ---
  3.  
  4. [DEFAULT]
  5.  
  6. # MySQL & RabbitMQ Connections
  7. sql_connection=mysql://novadbadm:[email protected]/nova
  8. rabbit_host=192.168.0.10
  9. rabbit_password=36a62xtz
  10.  
  11. # Nova-Scheduler
  12. scheduler_driver=nova.scheduler.simple.SimpleScheduler
  13.  
  14. # Nova-API
  15. auth_strategy=keystone
  16. s3_host=192.168.0.11
  17. ec2_host=192.168.0.11
  18. nova_url=http://192.168.0.11:8774/v1.1/
  19. ec2_url=http://192.168.0.11:8773/services/Cloud
  20. keystone_ec2_url=http://192.168.0.11:5000/v2.0/ec2tokens
  21. api_paste_config=/etc/nova/api-paste.ini
  22. allow_admin_api=true
  23. use_deprecated_auth=false
  24. ec2_private_dns_show_ip=True
  25. dmz_cidr=169.254.169.254/32
  26. ec2_dmz_host=192.168.0.11
  27. metadata_host=192.168.0.11
  28. metadata_listen=0.0.0.0
  29. enabled_apis=ec2,osapi_compute,metadata
  30.  
  31. # Networking
  32. network_api_class=nova.network.quantumv2.api.API
  33. quantum_url=http://192.168.0.12:9696
  34. quantum_auth_strategy=keystone
  35. quantum_admin_tenant_name=service
  36. quantum_admin_username=quantum
  37. quantum_admin_password=ax14f4f1q78g057d
  38. quantum_admin_auth_url=http://192.168.0.11:35357/v2.0
  39. libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver
  40. firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
  41. # linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver
  42.  
  43. # Compute
  44. connection_type=libvirt
  45. libvirt_type=kvm
  46. libvirt_use_virtio_for_bridges=true
  47. start_guests_on_host_boot=false
  48. resume_guests_state_on_host_boot=false
  49.  
  50. # Cinder
  51. volume_api_class=nova.volume.cinder.API
  52. osapi_volume_listen_port=5900
  53. iscsi_helper=ietadm
  54. iscsi_ip_address=192.168.0.11
  55.  
  56. # Glance
  57. glance_api_servers=192.168.0.11:9292
  58. image_service=nova.image.glance.GlanceImageService
  59.  
  60. # NoVNC
  61. novnc_enable=true
  62. novncproxy_base_url=http://192.168.0.11:6080/vnc_auto.html
  63. vncserver_proxyclient_address=127.0.0.1
  64. vncserver_listen=0.0.0.0
  65.  
  66. # Misc
  67. logdir=/var/log/nova
  68. state_path=/var/lib/nova
  69. lock_path=/var/lock/nova
  70. root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
  71. verbose=true
  72.  
  73. -----
  74.  
  75. cinder.conf
  76.  
  77. [DEFAULT]
  78. rootwrap_config = /etc/cinder/rootwrap.conf
  79. sql_connection = mysql://cinderdbadm:[email protected]/cinder
  80. api_paste_confg = /etc/cinder/api-paste.ini
  81. iscsi_helper = ietadm
  82. volume_name_template = volume-%s
  83. volume_group = cinder-volumes
  84. # volume_driver=cinder.volume.driver.RBDDriver
  85. # rbd_pool=volumes
  86. verbose = True
  87. rabbit_host = 192.168.0.10
  88. rabbit_password = 36a62xtz
  89. auth_strategy = keystone
  90. glance_host = 192.168.0.11
  91. glance_api_servers = 192.168.0.11:9292
  92. logdir = /var/log/cinder
  93. #osapi_volume_listen_port=5900
  94.  
  95. -----
Advertisement
Add Comment
Please, Sign In to add comment