我在对象存储容器中有大量文件,我想对这些文件进行备份,因此尝试下载它们。我已经完成了 swift cli 所需的所有设置并使用它。我从 bluemix 获得了所有这些对象存储详细信息
"auth_url": "https://identity.open.softlayer.com",
"endpoint_url": "https://objectstorage.open.softlayer.com/v1/AUTH_",
"password": "********",
"projectId": "**************",
"userId": "**********",
"v3_auth_url":"https://identity.open.softlayer.com/v3/auth/tokens"
但是当我尝试使用上述数据下载时,快速命令不起作用
当我使用这个命令时,我得到了对象存储 url 和 auth_token 作为响应
swift auth --os-auth-url https://identity.open.softlayer.com/v3 --auth-version 3 --os-project
-id ***** --os-user-id ****** --os-password *******
然后我使用objectstorage url和auth_token来获取容器列表但得到空响应
swift --os-auth-token ***** --os-storage-url ******* list
此外,我使用此命令从容器下载所有文件但没有用
swift download --all containername --os-auth-url https://identity.open.softlayer.com/v3 --au
th-version 3 --os-project-id ****** --os-user-id ******* --os-password ******
请有这方面知识的人可以帮助下载这些文件谢谢