Rclone mount shows old upload attempts

What is the problem you are having with rclone?

i mounted an netapp filer using the S3 API) storage system to my windows 2012 R2 server using the command below.

C:\Rclone> .\rclone mount onprem:/datadump s:\datadump --vfs-cache-mode full

This worked OK, i didn't have R/W access at the time and tried to upload some files. This failed with Access denied (which is to be expected).

i created a new config pointing at a different R/W bucket and i can upload all ok.

however, every time i restart the mount, an old upload attempt is still trying to complete even though i have deleted the config associated with this bucket.

This is NOT impacting the use of rclone mount, it is just producing log files that are not required.

is there a way to stop this upload attempt.

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

C:\Rclone> .\rclone mount onprem:/datadump s:\datadump --vfs-cache-mode full

The service rclone has been started.

2024/02/01 17:52:27 ERROR : XXX/nonsp/XXX/metrics - Copy.csv: Failed to copy: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770347275039, host id: 12503381
2024/02/01 17:52:27 ERROR : eXXX/nonsp/XXX/metrics - Copy.csv: vfs cache: failed to upload try #3, will retry in 40s: vfs cache: failed to transfer file from cache to remote: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770347275039, host id: 12503381
2024/02/01 17:53:07 ERROR : XXX/nonsp/XXX/metrics - Copy.csv: Failed to copy: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770387766483, host id: 12901389
2024/02/01 17:53:07 ERROR : XXX/nonsp/XXX/metrics - Copy.csv: vfs cache: failed to upload try #4, will retry in 1m20s: vfs cache: failed to transfer file from cache to remote: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770387766483, host id: 12901389
2024/02/01 17:54:28 ERROR : XXX/nonsp/XXX/metrics - Copy.csv: Failed to copy: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770468316673, host id: 12107020
2024/02/01 17:54:28 ERROR : XXX/nonsp/XXX/metrics - Copy.csv: vfs cache: failed to upload try #5, will retry in 2m40s: vfs cache: failed to transfer file from cache to remote: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770468316673, host id: 12107020
2024/02/01 17:57:08 ERROR : XXX/nonsp/XXX/metrics- Copy.csv: Failed to copy: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770628860217, host id: 12846447
2024/02/01 17:57:08 ERROR : XXX/nonsp/XXX/metrics - Copy.csv: vfs cache: failed to upload try #6, will retry in 5m0s: vfs cache: failed to transfer file from cache to remote: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770628860217, host id: 12846447
2024/02/01 18:02:09 ERROR : XXX/nonsp/XXX/metrics - Copy.csv: Failed to copy: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770929391730, host id: 12109072
2024/02/01 18:02:09 ERROR : XXX/nonsp/XXX/metrics- Copy.csv: vfs cache: failed to upload try #7, will retry in 5m0s: vfs cache: failed to transfer file from cache to remote: multipart upload failed to initialise: create multipart upload failed: AccessDenied: Access Denied
status code: 403, request id: 1706770929391730, host id: 12109072
-->

PS C:\rclone> .\rclone version
rclone v1.65.2

  • os/version: Microsoft Windows Server 2019 Standard 1809 (64 bit)
  • os/kernel: 10.0.17763.5206 (x86_64)
  • os/type: windows
  • os/arch: amd64
  • go/version: go1.21.6
  • go/linking: static
  • go/tags: cmount

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

AWS S3

Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.

PS C:\rclone> .\rclone config redacted
[XXonprem]
type = s3
provider = Other
access_key_id = XXX
secret_access_key = XXX
acl = private

Clean the cache.

Make sure that you do not have any active uploads, stop mount and then run:

$ rclone config paths
Config file: /Users/kptsky/.config/rclone/rclone.conf
Cache dir:   /Users/kptsky/Library/Caches/rclone
Temp dir:    /var/folders/36/02d6s6313zq5k3mfrhg4d8zc0000gn/T

It will tell you where your cache is located - Cache dir. Delete all content there. Done

1 Like

thanks for the help, that worked a treat

1 Like

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