我已经按照Ubuntu14.04 的指南安装了Keystone
当我尝试创建服务实体时:
openstack service create --type identity \
--description "Openstack Identity" keystone
我得到:
INFO: urllib3.connectionpool Starting new HTTP connection (1): controller
ERROR: cliff.app Internal Server Error (HTTP 500)
我确定我已经连接到“控制器”,并且 mysql 被配置为接受来自任何主机的连接。
我的keystone配置文件是:
[DEFAULT] admin_token =ADMIN
admin_port=35357
public_port=5000
[database]
connection = mysql://keystone:keystone@controller/keystone
[memcache]
servers = localhost:11211
[token]
provider = keystone.token.providers.uuid.Provider
driver =keystone.token.persistence.backends.memcache.Token
[revoke]
driver = keystone.contrib.revoke.backends.sql.Revoke
[DEFAULT]
verbose = True
Apache 的配置如指南中所示。
我哪里失败了?