Rcd Webgui on a System Service

What is the problem you are having with rclone?

I have one serviced-file for 3 Rclone-mount-services
I would like to have an RCD Webgui for all of them.
How can i achieve this?
I guess this will result in a Port overlap, because I can't run every mount with the same port?

Thanks for any advice

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

rclone 1.63.1

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

Onedrive Business

Serviced File

[Unit]
Description=rclone: Remote FUSE filesystem for cloud storage config %i
Documentation=man:rclone(1)
After=network-online.target
Wants=network-online.target 
AssertPathIsDirectory=%h/mnt/%i
StartLimitInterval=200
StartLimitBurst=5

[Service]
Type=notify
Environment="RCLONE_CONFIG_PASS=4324323432432"
ExecStart= \
  /usr/bin/rclone mount \
    --config=%h/.config/rclone/rclone.conf \
    --log-level DEBUG \
    --log-file /root/logs/rclone.log \
    --umask 022 \
--vfs-cache-mode full \
--allow-other \
--no-modtime \
--buffer-size 32M \
--cache-dir /root/rclone/cache \
--no-checksum \
--vfs-fast-fingerprint \
--ignore-checksum \
--no-check-certificate \
--checkers 1 \
--tpslimit 3 \
--transfers 1 \
--bwlimit-file 40M:40M \
--low-level-retries 1 \
--onedrive-no-versions \
--onedrive-hash-type none \
--onedrive-chunk-size 100M \
--dir-cache-time 9999h \
--vfs-cache-max-age 24h \
--vfs-read-chunk-size 256M \
--poll-interval 1m \
--ignore-size \
--user-agent "ISV|dsadsada|1dsadsada82b29eebec" \
--vfs-cache-max-size 10G \
    %i: %h/mnt/%i
ExecStop=/bin/fusermount -u %h/mnt/%i
Restart=always
RestartSec=30

[Install]
WantedBy=default.target

Pass multiple parameters to your systemd mount service including rc port number to use. Consult your specific OS systemd manual how to do it.

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