0

I am following this doc to install openstack in Ubuntu:

https://wiki.opendaylight.org/view/OVSDB:OVSDB_OpenStack_Guide

However, I am unable to create the Neutron Networks. I get the following error:

$ neutron net-create my-private-net neutron subnet-create $(neutron net-list | grep 'my-private-net' | awk '{print $2}') 10.254.0.0/24 --name my-private-subnet --ip-version 4 --gateway 10.254.0.1 --allocation-pool start=10.254.0.2,end=10.254.0.254
Discovering versions from the identity service failed when creating   the password plugin. Attempting to determine version from URL.
Internal Server Error (HTTP 500)
Discovering versions from the identity service failed when creating the password plugin. Attempting to determine version from URL.
Internal Server Error (HTTP 500)

My local.conf

[[local|localrc]]
HOST_IP=192.168.0.3
FLOATING_RANGE=1.2.3.128/25
FIXED_RANGE=10.11.12.0/24
FIXED_NETWORK_SIZE=256
FLAT_INTERFACE=eth0
ADMIN_PASSWORD=stack
MYSQL_PASSWORD=stack
RABBIT_PASSWORD=stack
SERVICE_PASSWORD=stack
SERVICE_TOKEN=1a672b16de58d47d45d7

Has anyone else faced this problem? How do I resolve this issue?

user3155354
  • 63
  • 1
  • 1
  • 11
  • First, run the client with `--debug` so you can see exactly which request is triggering that error. It sounds like a Keystone issue, so maybe start by look at the keystone server logs. Are other openstack commands working correctly? E.g., can you create tenants, users, images, flavors, etc? – larsks Jan 21 '16 at 02:11
  • I still haven't setup the VMs. I still haven't reached the stage of creating tenants, users, etc. Also, the HOST_IP is my laptop IP correct? Where can I find the keystone issue? – user3155354 Jan 21 '16 at 02:21
  • What I am trying to determine is whether or not *anything* works, or if this is just a neutron issue. The answer largely determines where to look for problems. You may want to configure persistent logging; see [the documentation](http://docs.openstack.org/developer/devstack/configuration.html#logging-the-service-output) for details. This will make it easier to diagnose things. – larsks Jan 21 '16 at 02:28
  • I found the place where the error is. When I run the ./stack command, I get the following as a message: cp: cannot stat '/opt/stack/cinder/etc/cinder/cinder.conf.sample': No such file or directory Not sure how to go about this now. – user3155354 Jan 21 '16 at 07:45

0 Answers0