I am attempting a simple copy from my local linux file system to my R2 bucket. The file I am sending is:
/home/raf/test0.txt. The bucket is called cross.
Here is my rclone install:
Latest
rclone v1.64.0
- os/version: ubuntu 22.04 (64 bit)
- os/kernel: 5.15.90.1-microsoft-standard-WSL2 (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.21.1
- go/linking: static
- go/tags: none
rclone copy /home/raf/test0.txt R2:cross
[R2]
type = s3
provider = Cloudflare
access_key_id = XXX
secret_access_key = XXX
region = auto
endpoint = https://c33fd1ba4dba65fad2f270c15a91f9bb.r2.cloudflarestorage.com/
2023/09/20 03:18:11 DEBUG : rclone: Version "v1.64.0" starting with parameters ["rclone" "copy" "/home/raf/test0.txt" "R2:cross" "-vv"]
2023/09/20 03:18:11 DEBUG : Creating backend with remote "/home/raf/test0.txt"
2023/09/20 03:18:11 DEBUG : Using config file from "/home/raf/.config/rclone/rclone.conf"
2023/09/20 03:18:11 DEBUG : fs cache: adding new entry for parent of "/home/raf/test0.txt", "/home/raf"
2023/09/20 03:18:11 DEBUG : Creating backend with remote "R2:cross"
2023/09/20 03:18:12 DEBUG : Resolving service "s3" region "auto"
2023/09/20 03:18:12 NOTICE: Time may be set wrong - time from "c33fd1ba4dba65fad2f270c15a91f9bb.r2.cloudflarestorage.com" is -36h4m1.90088961s different from this computer
2023/09/20 03:18:12 ERROR : Attempt 1/3 failed with 1 errors and: Forbidden: Forbidden
status code: 403, request id: , host id:
2023/09/20 03:18:12 ERROR : Attempt 2/3 failed with 1 errors and: Forbidden: Forbidden
status code: 403, request id: , host id:
2023/09/20 03:18:12 ERROR : Attempt 3/3 failed with 1 errors and: Forbidden: Forbidden
status code: 403, request id: , host id:
2023/09/20 03:18:12 INFO :
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Errors: 1 (retrying may help)
Elapsed time: 0.1s
2023/09/20 03:18:12 DEBUG : 6 go routines active
2023/09/20 03:18:12 Failed to copy: Forbidden: Forbidden
status code: 403, request id: , host id:
Any help would be appreciated!