S3 Non-existent file

What is the problem you are having with rclone?

I have a remote called s3c thats encrypted and defaults to bucket-0

I typed

rclone ls s3c

2142264320 01-12-2021.tar

and it shows a file I believe previously existed, but it not shown when doing

rclone ls s3c:bucket-0
However does not show the file.

Why is this? Is this a cache? Or have I accidentally placed files outside a bucket?

The file is not visible (I checked the size and date of creation) via the Wasabi web file-manager in same bucket.

Run the command 'rclone version' and share the full output of the command.

rclone v1.53.3-DEV

  • os/arch: linux/amd64
  • go version: go1.18

Which cloud storage system are you using? (eg Google Drive)

Wasabi S3

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone ls s3c

The rclone config contents with secrets removed.

[s3]
type = s3
provider = Wasabi
access_key_id = [redacted]
secret_access_key = [redacted]
endpoint = s3.[redacted].wasabisys.com

[s3c]
type = crypt
remote = s3:bucket-0
password = [redacted]

A log from the command with the -vv flag

2022/11/05 04:19:43 DEBUG : rclone: Version "v1.53.3-DEV" starting with parameters ["rclone" "-vv" "ls" "s3c"]
2022/11/05 04:19:43 DEBUG : Creating backend with remote "s3c"
2022/11/05 04:19:43 DEBUG : Using config file from "/home/dza/.config/rclone/rclone.conf"
2022/11/05 04:19:43 DEBUG : fs cache: renaming cache item "s3c" to be canonical "/home/dza/s3c"
2142264320 01-12-2021.tar
2022/11/05 04:19:43 DEBUG : 2 go routines active

That's a very old version so you'd want to upgrade it.

Your rclone.conf seems incomplete as it references a s3: remote but none is listed.

s3c needs a ":" at the end as it's pointing to your local file system without the : at the end of the remote.

Lol there was an s3c folder in my home. Thanks dude.

I will get the latest rclone version :slight_smile: but thanks for solving it.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.