What is the problem you are having with rclone?
Uploaded file via the web interface of Blomp is not visible after mounting blomp via rclone.
Run the command 'rclone version' and share the full output of the command.
rclone v1.57.0
- os/version: debian 11.2
- os/kernel: 5.10.0-10-686-pae (i686)
- os/type: linux
- os/arch: 386
- go/version: go1.17.2
- go/linking: static
- go/tags: none
Which cloud storage system are you using? (eg Google Drive)
blomp
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
Trying to mount blomp with following systemd unit:
[Unit]
Description=RClone mount storage at blomp.com
Wants=network-online.target
After=network-online.target
[Service]
Type=notify
KillMode=mixed
RestartSec=5
#Set up environment
Environment=RCLONE_CONFIG="/etc/rclone/rclone.conf"
Environment=MOUNT_DIR="/srv/backup/blomp.com"
Environment=RCLONE_TEMP_DIR="/srv/backup/.cache/blomp"
ExecStart=/usr/bin/rclone mount Blomp: "${MOUNT_DIR}" \
-vv \
--config="${RCLONE_CONFIG}" \
--allow-other \
--syslog \
--cache-dir="${RCLONE_TEMP_DIR}" \
--drive-use-trash=false
ExecStop=/bin/fusermount -uz "${MOUNT_DIR}"
Restart=on-failure
[Install]
WantedBy=multi-user.target
Trying to get some basic information from blomp backend:
rclone --config="/etc/rclone/rclone.conf" about Blomp:
Trying to get directory listing of blomp backend:
rclone --config="/etc/rclone/rclone.conf" lsd Blomp:
The rclone config contents with secrets removed.
[Blomp]
type = swift
user = email@address
key = password
auth = https://authenticate.blomp.com
tenant = storage
auth_version = 2
Remark: The password in rclone.conf for Blomp: backend is stored in plaintext format, however for all other backends I use it is stored in encrypted format. The configuration was made with the rclone config command.
A log from the command with the -vv
flag
Fragment from my /var/log/syslog after mounting via the systemd unit:
Feb 7 23:22:30 myserver systemd[1]: Starting RClone mount storage at blomp.com...
Feb 7 23:22:30 myserver rclone[21457]: 2022/02/07 23:22:30 DEBUG : Setting --config "/etc/rclone/rclone.conf" from environment variable RCLONE_CONFIG="/etc/rclone/rclone.conf"
Feb 7 23:22:30 myserver rclone[21457]: 2022/02/07 23:22:30 DEBUG : Setting --temp-dir "/srv/backup/.cache/blomp" from environment variable RCLONE_TEMP_DIR="/srv/backup/.cache/blomp"
Feb 7 23:22:30 myserver rclone[21457]: rclone: Version "v1.57.0" starting with parameters ["/usr/bin/rclone" "mount" "Blomp:" "/srv/backup/blomp.com" "-vv" "--config=/etc/rclone/rclone.conf" "--allow-other" "--syslog" "--cache-dir=/srv/backup/.cache/blomp" "--drive-use-trash=false"]
Feb 7 23:22:30 myserver rclone[21457]: Creating backend with remote "Blomp:"
Feb 7 23:22:30 myserver rclone[21457]: Using config file from "/etc/rclone/rclone.conf"
Feb 7 23:22:31 myserver rclone[21457]: Swift root: poll-interval is not supported by this remote
Feb 7 23:22:31 myserver rclone[21457]: Swift root: Mounting on "/srv/backup/blomp.com"
Feb 7 23:22:31 myserver rclone[21457]: : Root:
Feb 7 23:22:31 myserver rclone[21457]: : >Root: node=/, err=<nil>
Feb 7 23:22:31 myserver systemd[1]: Started RClone mount storage at blomp.com.
Output of the formerly mentioned command "about"
2022/02/07 23:34:44 Failed to about: About call failed: container listing failed: Operation forbidden
Output of the formerly mentioned command "lsd"
2022/02/07 23:36:46 ERROR : : error listing: container listing failed: Operation forbidden
2022/02/07 23:36:46 Failed to lsd with 2 errors: last error was: container listing failed: Operation forbidden
If you have any idea, please help me. What can be wrong with my setup?