使用 gsutil 从 GCP rsync 到 S3
Using gsutil to rsync from GCP to S3
有一个类似的问题有答案。但是,那里的最佳答案对我不起作用:
如果我使用:
gsutil -m rsync -r gs://your-gcs-bucket s3://your-s3-bucket
我失败了:
The authorization header is malformed; the region 'us-east-1' is wrong; expecting 'eu-west-2'
好的,rclone 确实有效,但是,为什么不使用 gsutil rync?
顺便说一句,我在伦敦地区
与 gsutil 命令相关联的是一个名为 ~/.boto
的配置文件。在此文件中,可以 add/code:
[Credentials]
s3_host=s3.eu-west-2.amazonaws.com
关于该文件的详细信息及相关信息,请参见:
有一个类似的问题有答案
如果我使用:
gsutil -m rsync -r gs://your-gcs-bucket s3://your-s3-bucket
我失败了:
The authorization header is malformed; the region 'us-east-1' is wrong; expecting 'eu-west-2'
好的,rclone 确实有效,但是,为什么不使用 gsutil rync?
顺便说一句,我在伦敦地区
与 gsutil 命令相关联的是一个名为 ~/.boto
的配置文件。在此文件中,可以 add/code:
[Credentials]
s3_host=s3.eu-west-2.amazonaws.com
关于该文件的详细信息及相关信息,请参见: