First time here? Check out the FAQ!
2015-10-05 03:44:37 -0600 | answered a question | PBR : Exception "Versioning for this project requires either an sdist tarball, or access to an upstream git repository. I had such error while i was trying to use the jenkins-job-builder release 1.2.0.tar.gz i solved it by extracting the tar - cd [1.2.0.tar] - git init - pip install -r requirements.txt - python setup.py install and it worked without any trouble |
2015-10-01 15:23:15 -0600 | received badge | ● Popular Question (source) |
2015-10-01 15:23:15 -0600 | received badge | ● Notable Question (source) |
2015-10-01 15:23:15 -0600 | received badge | ● Famous Question (source) |
2015-09-03 01:48:17 -0600 | received badge | ● Enthusiast |
2015-08-26 01:28:40 -0600 | answered a question | kilo error : openstack service create --name keystone --description "OpenStack Identity" identity guys, I found the solution in my case as the message in the keystone-error.log says /var/www/cgi-bin/keystone/admin wsgi application admin is missing i go to the location cd /var/www/cgi-bin/keystone/ and did a cat on admin wsgi application. it was empty so i re- run the following step curl http://git.openstack.org/cgit/openstack/keystone/plain/httpd/keystone.py?h=stable/kilo (http://git.openstack.org/cgit/opensta...) \ | tee /var/www/cgi-bin/keystone/main /var/www/cgi-bin/keystone/admin and then export OS_TOKEN=ADMIN_TOKEN export OS_URL=http://controller:35357/v2.0 openstack service create \ --name keystone --description "OpenStack Identity" identity and it run perfectly as expected. |
2015-08-25 11:18:44 -0600 | asked a question | kilo error : openstack service create --name keystone --description "OpenStack Identity" identity kilo error : openstack service create --name keystone --description "OpenStack Identity" identity on running this command it gives and error ERROR: openstack Internal Server Error (HTTP 500) on visiting the /var/log/apache2/keystone-error.log 2015-08-25 06:44:52.501360 mod_wsgi (pid=7736): Attach interpreter ''. 2015-08-25 06:46:03.568015 mod_wsgi (pid=7741, process='keystone-admin', application=''): Loading WSGI script '/var/www/cgi-bin/keystone/admin'. 2015-08-25 06:46:03.568183 mod_wsgi (pid=7741): Target WSGI script '/var/www/cgi-bin/keystone/admin' does not contain WSGI application 'application'. 2015-08-25 06:46:51.802759 mod_wsgi (pid=7745, process='keystone-admin', application=''): Loading WSGI script '/var/www/cgi-bin/keystone/admin'. 2015-08-25 06:46:51.802881 mod_wsgi (pid=7745): Target WSGI script '/var/www/cgi-bin/keystone/admin' does not contain WSGI application 'application'. Anybody have any idea what is it about. I have tried 4 times and everytime facing the same problem at this step |