Overview
Since version 3.0, Resilio requires a license key to run, and it’s not backward compatible with version 2.
Thus, let’s install version 2.8.1 instead.
Install on CentOS 7
1 | curl -O -L --progress-bar https://download-cdn.resilio.com/stable/rpm/x86_64/0/resilio-sync-2.8.1.1390-1.x86_64.rpm |
Permissions
Refer to this post:
For me, I am ‘root’ on VPS, so:
1 | sudo usermod -aG root rslsync |
To run:
1 | sudo systemctl restart resilio-sync |
You should be able to access the web UI at: http:///gui
at the end, very important.
Set to http-only
Set to http-only to avoid “Too many redirects” error on Cloudflare.
1 | vi /etc/resilio-sync/config.json |
Also, allow remote access by setting listen
to 0.0.0.0:8888
.
1 | { |
Debug Resilio
Check status:
1 | sudo journalctl -u resilio-sync |
Check Web UI:
1 | curl -k -L http://127.0.0.1:8888/gui |
Reference
https://unclemartian.github.io/2022/03/25/Tech/ubuntu/install-resilio-sync/