Advertisement
Guest User

Untitled

a guest
Mar 18th, 2016
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. nova service-list
  2. ERROR (Unauthorized): Unauthorized (HTTP 401) (Request-ID: req-b1816082-ba85-42f5-9d37-f8bdffeaa729)
  3.  
  4. [DEFAULT]
  5. log_dir = /var/log/nova
  6. state_path = /var/lib/nova
  7. verbose = True
  8. api_paste_config = /etc/nova/api-paste.ini
  9. compute_scheduler_driver = nova.scheduler.filter_scheduler.FilterScheduler
  10. notify_nova_on_port_status_changes = True
  11. notify_nova_on_port_data_changes = True
  12. nova_url = http://10.0.0.1:8774/v2/
  13. root_helper = sudo nova-rootwrap /etc/nova/rootwrap.conf
  14. auto_assign_floating_ip = True
  15. vif_plugging_is_fatal = False
  16. vif_plugging_timeout = 0
  17. multihost = True
  18. compute_driver = libvirt.LibvirtDriver
  19. allow_same_net_traffic = False
  20. auth_strategy = keystone
  21. my_ip = 10.0.0.1
  22. enabled_apis = osapi_compute,metadata
  23.  
  24. # Vnc configuration
  25. vnc_enabled = true
  26. novnc_enabled = true
  27. ssl_only = true
  28. cert = /home/ubuntu/cert-ssl/cert.cer
  29. key = /home/ubuntu/cert-ssl/private.key
  30. novncproxy_port = 6080
  31.  
  32. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  33. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  34. security_group_api = neutron
  35. network_api_class = nova.network.neutronv2.api.API
  36. compute_driver = libvirt.LibvirtDriver
  37.  
  38. # Cinder #
  39. volume_api_class = nova.volume.cinder.API
  40. osapi_volume_listen_port = 5900
  41.  
  42. # Network settings
  43. [neutron]
  44. url = http://10.0.0.1:9696
  45. auth_uri = http://10.0.0.1:5000/v2.0/
  46. identity_uri = http://10.0.0.1:35357
  47. admin_tenant_name = service
  48. admin_username = neutron
  49. admin_password = adminPassword
  50. metadata_proxy_shared_secret = sharedsecret
  51. libvirt_vif_driver = nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver
  52. service_metadata_proxy = True
  53.  
  54. [libvirt]
  55. virt_type = kvm
  56.  
  57. [keystone_authtoken]
  58. auth_uri = http://10.0.0.1:5000/v2.0/
  59. identity_uri = http://10.0.0.1:35357
  60. admin_tenant_name = service
  61. admin_username = nova
  62. admin_password = adminPassword
  63.  
  64. [glance]
  65. api_servers = 10.0.0.1:9292
  66. image_service = nova.image.glance.GlanceImageService
  67.  
  68. [cinder]
  69. os_region_name = RegionOne
  70.  
  71. [database]
  72. connection = mysql://nova:nova@10.0.0.1/nova
  73.  
  74. [vnc]
  75. enabled = True
  76. keymap = en-us
  77. novncproxy_base_url = https://10.0.0.1:6080/vnc_auto.html
  78. vncserver_listen = 0.0.0.0
  79. vncserver_proxyclient_address = 10.0.0.1
  80.  
  81. [oslo_concurrency]
  82. lock_path = /var/lib/nova/tmp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement