我正在尝试使用对象存储GE设置S3QL,但似乎只遗漏了一条信息。
多亏了这个非常好的教程:https://dmsimard.com/2014/09/29/s3ql-a-filesystem-over-http-with-swift/,我成功地安装了S3QL
现在,当我试图挂载一个我在区域'Lannion2‘中创建的对象容器'test’时,我被卡住了。
URL-语法需要定义一个'region‘(swiftks://<hostname>[:<port>]/<region>:<container>),但我不知道这是如何映射到fiware-stack的。当尝试以下命令时,s3ql似乎成功连接Keystone并进行身份验证,但找不到地域。
mkfs.s3ql swiftks://cloud.lab.fiware.org:4730/Lannion2:test --backend-options no-ssl
Enter backend login:
Enter backend passphrase:结果如下:
No accessible object storage service found in region Lannion2 (available regions: )遗憾的是,响应中没有列出可用的区域。身份验证工作正常,因为输入错误的登录或密码会导致身份验证错误。
有没有关于keystone/fiware云中区域命名的文档?
发布于 2015-09-20 15:54:10
通过: Post http://cloud.lab.fi-ware.org:4730/v2.0/tokens with Content-type application/json和Body:{"auth":{"passwordCredentials":{"username":"",“http://cloud.lab.fi-ware.org:4730/v2.0/tokens”:""},“tenantId”:“*”}
在响应中,您应该收到一个端点列表,其中包括一个swift端点。应该有这样的条目:{"adminURL":"","region":"Lannion2","internalURL":AUTH "id":"","publicURL":"/v1/AUTH_"}
https://stackoverflow.com/questions/31108109
复制相似问题