我正在运行cinder客户端并尝试使用openstack端点,但是当我运行cinder show时,请求被重定向到http端点并被中止
#cinder --version 4.1.0
#cinder show 3988928-79b0-4e2e-90a9-38089af5b46e ERROR: Unable to establish connection to http://mydomain:8776/v3/35f4380e80074591a9fd746c09e39d5c/volumes/detail?all_tenants=1&marker=6088358b-2905-42a1-aa50-a014c1dc8147: ('Connection aborted.', BadStatusLine("''",))
你知道为什么这个请求被重定向吗?
发布于 2019-01-29 12:02:25
"cinder“CLI已折旧,请使用"openstack”CLI:
openstack volume show 3988928-79b0-4e2e-90a9-38089af5b46e"如果你仍然想使用“煤渣秀”,无论出于什么原因,将OS_VOLUME_API_VERSION设置为3.5。
export OS_VOLUME_API_VERSION=3.50
cinder show 3988928-79b0-4e2e-90a9-38089af5b46ehttps://stackoverflow.com/questions/54407965
复制相似问题