Rclone listening in background?

I run rclone rcd on NAS it works well
But is it possible that rclone run automatically on every boot and in background so that I can remote control rclone by another computer through webui?

You'd probably want to make it autostart on boot however you want on the NAS you have. You'd have to research how to do that on the NAS.

Problem Solved. I used with crontab
First is to edit crontab
crontab -e
Second is to add the command
@reboot /usr/bin/rclone rcd --rc-web-gui --rc-web-gui-no-open-browser --rc-user username --rc-pass password --rc-addr :5572 >/dev/null 2>&1 &
And then reboot
Now, I can go to same ip address at port 5572 to use rclone in broswer.

1 Like

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