10/14/2013: What is the default username and password for keystone in OpenStackInstaller?
After a bit of looking around I finally looked at the keystone-services.sh file which specifies the user name and password clear as day:
keystone --os-username=admin --os-password=openstack --os-auth-url=http://localhost:35357/v2.0 token-get
keystone --os-username=admin --os-password=openstack --os-auth-url=http://localhost:35357/v2.0 token-get
10/13/2013: Getting nova-manage to run in uksysadmin/OpenStackInstaller project.
While working to install OpenStack in a VirtualBox Ubuntu instance I ran into an issue running the 'nova-manage version' command.
The error was of the form:
Failed to parse /etc/nova/nova.conf ... No ':' or '=' found in assignment
The resolution was fairly easy. Some of the parameters needed True or False values.
Apparently an older version of nova-manage used both name and value in the configruation. But a newer version wants just the name. (or vice versa - it's not clear to me).
I assigned True or False to each parameter that produced an error message. About five of them. I choose True or False at whim. When no more errors were reported, the program reported the following version:
2013.1.3
Failed to parse /etc/nova/nova.conf ... No ':' or '=' found in assignment
The resolution was fairly easy. Some of the parameters needed True or False values.
Apparently an older version of nova-manage used both name and value in the configruation. But a newer version wants just the name. (or vice versa - it's not clear to me).
I assigned True or False to each parameter that produced an error message. About five of them. I choose True or False at whim. When no more errors were reported, the program reported the following version:
2013.1.3