Questions tagged [keystone]

Keystone is the identity service used by OpenStack for authentication.

Essentially keystone's role is to grant tokens to users be they people, services, or anything at all.

If you make an API query anywhere in OpenStack, keystone's API is how it is discovered if you are allowed to make that API query.

247 questions
0
votes
1 answer

Keystone and openshift, getting 503 error

Can anyone please help me install keystone.js on my openshift app? I've pushed all my files to the remote, but get a 503 error when I browse to my page. I'm quite new to Openshift, can anyone please point me in the right direction? I have tried…
Bomber
  • 10,195
  • 24
  • 90
  • 167
0
votes
1 answer

Fixtures for openstack keystone

I'm creating docker container containing openstack keystone. Need to create initial data (projects, domains, users). Is it possible to do that without running keystone daemon?
aisbaa
  • 9,867
  • 6
  • 33
  • 48
0
votes
1 answer

How to get Authorization Token for Ceilometer API Openstack

I am new to openstack, trying to use Ceilometer python API to pull some data from a testbed server, I am accessing the server from a remote site the problem is that I cannot figure out how get the an authorization token I used the following…
Imo
  • 1,455
  • 4
  • 28
  • 53
0
votes
1 answer

Accessing the user password in user table from Keystone database in correct form(String)

import java.sql.*; public class userRegistration { static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://localhost/keystone"; static final String USER = "root"; static final String PASS…
sunil zacharias
  • 91
  • 1
  • 3
  • 7
0
votes
2 answers

How do Openstack Keystone PKI certificates work?

Openstack Keystone PKI uses two certificates as this document mentions: https://www.mirantis.com/blog/understanding-openstack-authentication-keystone-pki/ CA certificate and the signing certificate. My understanding so far: Signing key is used to…
0
votes
1 answer

what does end point mean in terms of Ceilometer API python?

I am new to openstack, trying to use Ceilometer python API to pull some data from a testbed server but I get this error I do not understand, what does it need as an endpoint? raise…
Imi
  • 529
  • 2
  • 8
  • 23
0
votes
1 answer

Mock external REST in Python unittest

I am using keystoneclient in my module to retrieve auth_token when user credential is passed. Then, put the token into req.headers['X-Auth-Token'] as below code. I want to write a unittest for this class. I am assuming that I need to mock Keystone…
jaycee
  • 1
  • 1
  • 2
  • 9
0
votes
2 answers

OpenStack Designate: '_AuthTokenPlugin' has no attribute 'register_conf_options'

I have recently started to use OpenStack. Here's the problem: I am setting up Designate for OpenStack (DNSaaS) and I have set it up accordingly to the instructions here -- https://designate.readthedocs.org/en/latest/getting-started.html With the…
jiranthos
  • 3
  • 2
0
votes
1 answer

Unable to start keystone service on Docker container

I have configured openstack keystone in a docker container but am not able to start the keystone service. Am getting the below error. root@6cb02ecb9c47:/etc/init.d# service keystone restart keystone: unrecognized service Can anybody please help me…
Sitakanta
  • 1
  • 1
0
votes
2 answers

Expecting an auth URL via either error thrown openstack

ubuntu@ubuntu-14-lts:~$ export OS_USERNAME=admin ubuntu@ubuntu-14-lts:~$ export OS_TENANT_NAME=admin ubuntu@ubuntu-14-lts:~$ export OS_PASSWORD=admin ubuntu@ubuntu-14-lts:~$ export OS_AUTH_URL=http://localhost:35357/v2.0/ Executed the command to…
anish
  • 6,884
  • 13
  • 74
  • 140
0
votes
1 answer

Can not start keystone service

I installed packstack on my fresh installation of Fedora 21 with all updates. When I run packstack --allinone I received this error: ERROR : Error appeared during Puppet run: 192.168. 1.*_keystone.pp Error: Could not start Service[keystone]:…
ValeriRangelov
  • 603
  • 2
  • 8
  • 18
0
votes
1 answer

Setup public rule in keystone policy file

I am trying to create roles for my openstack installation. One of the first things I've tried is to allow all users to access a resource in my policy file, "identity:list_roles" for example. But no matter what I tried it will always say: You are…
Max
  • 368
  • 3
  • 10
0
votes
2 answers

Mongoose pre.save() async middleware not working on record creation

I am using keystone@0.2.32. I would like to change the post category to a tree structure. The below code is running well except when I create a category, it goes into a deadlock: var keystone = require('keystone'), Types =…
Ben Kong
  • 1
  • 1
0
votes
1 answer

Devstack Juno: ImportError: No module named persistence.backends.sql

Deploying openstack using devstack ran across this error when I use keystone commands. [Thu Nov 27 09:20:59 2014] [error] [client 172.20.14.15] Traceback (most recent call last): [Thu Nov 27 09:20:59 2014] [error] [client 172.20.14.15] File…
Mahesh
  • 1,583
  • 13
  • 18
0
votes
2 answers

ImportError: No module named persistence.backends.sql

I am currently working on setting up OpenStack infrastructure on 3 nodes. I am stuck on starting keystone after I have successfully installed it. The error message I am getting is ImportError: No module named persistence.backends.sql The controller…
CoderSpinoza
  • 2,145
  • 23
  • 28