S3ResponseError
hello,I use s3-parallel-put and getting a trouble
python s3-parallel-put --bucket=reocar-test --host=192.168.0.191:7480 --log-filename=/tmp/s3pp.log --dry-run --limit=1 .
Traceback (most recent call last):
File "s3-parallel-put", line 459, in
but i have this bucket and my bucket can upload file or down I have been set access-key and secret-key in environment .
root@ceph1:~/s3-parallel-put-master# s3cmd ls 2018-08-02 05:46 s3://reocar-test
when i used
python s3-parallel-put --bucket=s3://reocar-test --host=192.168.0.191:7480 --log-filename=/tmp/s3pp.log --dry-run --limit=1 .
Traceback (most recent call last):
File "s3-parallel-put", line 459, in
my host is ceph rgw s3 not Amazon AWS S3
Did i miss some thing ? Thankyou !
HI,
Try using the following -
python s3-parallel-put --bucket="reocar-test" --host=192.168.0.191:7480 --log-filename="/tmp/s3pp.log" --dry-run --limit=1 .
Note the double quotes for the bucket and the log-filename switches.
@iCHAIT Thank you! I sloved it.