问题标签 [keystone]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
jython - 如何从 jython WSGI Web 应用程序创建战争文件
我想将使用 jython 2.5.2 运行的 WSGI ( keystone ) Web 应用程序部署为 java servlet 应用程序服务器(特别是 glassfish)的 war 文件。
如何从我的 keystone Web 应用程序(或任何 WSGI 应用程序)创建一个 war 文件?
authentication - Integrating Swift and Keystone
I have swift-proxy and keystone installed in a multi-node environment.
When I try to curl for a token, keystone returns the token successfully
returns successfully with
When I try running some swift commands, the command just hangs and does not return.
I see the following log in the keystone logs
Is there something I am missing in the command ? I notice similar behavior for the following commands too - when I try to upload files to a container and list them
python - 从openstack keystone api获取用户列表
我想对 openstack keystone 用户执行 CRUD 操作。根据 keystone api docs,我们必须使用 GET 请求以及 x-auth-token 信息。我为此编写了一个代码,但我无法获得任何用户列表,而是得到“404 Not Found,The resource could not be found”。我的代码如下
openstack - 在 Myeclipse 中调试 Keystone 引发异常
我按照这个页面 在 Eclipse 中设置 keystone,并调试 stable/folsom 的 keystone 分支,在我启动调试菜单后,控制台会这样写:
因此,我无法使用它进行调试。但是,当我在没有调试模式的情况下启动 i 时它运行良好。如果有人能给我一些关于如何使用任何 ide 或其他任何东西调试 keystone 源代码的建议,我真的很感激。
谢谢。
openstack - Openstack-Folsom keystone 脚本配置失败
基于此链接https://github.com/mseknibilel/OpenStack-Folsom-Install-guide/blob/master/OpenStack_Folsom_Install_Guide_WebVersion.rst#openstack-folsom-install-guide,我尝试运行这些脚本,但尽管我设置了HOST_IP 和 EXT HOST_IP。
./keystone_basic.sh ./keystone_endpoints_basic.sh
以下是收到的错误日志:--keystone:error:unrecognized arguments: service id of 18ea5916544429bed2c84af0303077
我在源文件中提供了tenant_name、tenant_id等信息,但恰好是提供的脚本没有被系统识别。以下是我使用的操作系统的详细信息。
我创建了虚拟机而不是使用物理机。与 Ubuntu 12.04 LTS 一起安装。
请就如何解决此问题提出建议。
谢谢。
java - 如何使用 keystone API 扩展发送 JSON 格式请求“向用户添加全局角色”?
我想使用 java 发送一个 JSON 格式的请求来为 openstack 用户添加一个管理员角色,我看到有一个提供"add global role to user"
API 的 keystone API 扩展:
这是链接: 2.1.1.5。为用户添加全局角色。
但我不知道如何以正确的方式通过 JSON 格式发送,以下是我的代码:我可以"key_admin_url"
用另一种方法获取,就像:130.237.215.18:35357/v2.0
130 之前有 http。
user_id 和 role_id 是两个字符串。
但我没有成功并得到 :java.io.IOException: Server returned HTTP response code: 501 for URL:
有谁知道如何发送正确的 JSON 请求以向用户添加角色?非常感谢。
openstack - OpenStack keystoneclient 按名称获取用户
我知道可以通过 id 获取用户,但我可用的只是名称。任何人都知道如何使用 keystone 客户端 v 2.0 按名称获取用户?
需要类似以下内容* * keystone.users.getByName(USER_NAME)
openstack - 是否可以使用 keystoneclient 在 OpenStack 中获取用户关联的租户列表?
有人知道获取用户租户列表的方法吗?我知道我可以获取租户的用户,并且可以获取所有租户的列表,因此从技术上讲,我可以遍历所有租户并查找特定用户,但这似乎是一种繁琐的方法。
openstack - Openstack-Keystone 无法启动
在过去的几天里,我几乎尝试了所有方法来让 keystone 运行无济于事。
设置都在同一台主机上,虚拟化和openstack和keystone都在同一台主机上,所以我尝试使用127.0.0.1和localhost设置keystone以及主机的IP,但没有运气
我在 logging.conf 文件中启用了日志记录并将级别设置为 DEBUG 和 INFO,但日志文件中没有任何内容。
任何想法将不胜感激。谢谢
openstack - Keystone 返回带有元数据 is_admin = 0 的令牌
我最近安装了 devstack 来使用 Openstack API。
在Openstack API 快速入门之后,我运行以下命令来获取身份验证令牌:
然后我得到回报:
我注意到从 JSON 元数据输出它返回"is_admin": 0。
这是为什么?
我期待 Keystone 返回 1。
问候