JohnDoee / autotorrent2

Cross-seed matching and torrent lifecycle tool
https://johndoee.github.io/autotorrent2/
MIT License
151 stars 12 forks source link

Install and configure on Synology Nas #29

Open Simpuhl opened 2 years ago

Simpuhl commented 2 years ago

Anybody know how to get this installed on a synology nas docker using qbitorrent docker also? I am a little new to this

newadventure079 commented 2 years ago

I installed it on my synology nas but not in a docker container. I just followed the install steps exactly. It does communicate to my rtorrent instances in a docker container on my nas tho

Simpuhl commented 2 years ago

I installed it on my synology nas but not in a docker container. I just followed the install steps exactly. It does communicate to my rtorrent instances in a docker container on my nas tho

Do you mind sharing your steps? I want to see about getting it to work with qbitorrent

newadventure079 commented 2 years ago

I literally followed the quickstart guide

python3 -m venv ~/.autotorrent # Create virtual environment where we install autotorrent2
~/.autotorrent/bin/pip install autotorrent2 # Actually install autotorrent2

# Optional, add at2 to your commandline
echo "alias at2=~/.autotorrent/bin/at2" >> ~/.bashrc
source ~/.bashrc
hamany99 commented 2 years ago

I installed it on my synology nas but not in a docker container. I just followed the install steps exactly. It does communicate to my rtorrent instances in a docker container on my nas tho

Can you please share with us the [clients] setup for rtorrent in (config.toml)? Is there anything I've to do to enable the scgi port in rtorrent?

Also, how did you align the paths in both rtorrent docker and autotorrent2? I was able to connect to qBittorrent and Transmission, but the path wasn't aligned.

Thank you.

newadventure079 commented 2 years ago
[clients.rtorrent-2020]
display_name = "rtorrent-2020"
client_type = "rtorrent"
url = "http://172.17.0.1:8006/RPC2"
session_path = "/volume3/docker/crazy-max-rutorrent-PAll-2020/rtorrent/.session/"

For the paths refer to https://github.com/JohnDoee/autotorrent2/issues/13 and subsequently https://github.com/JohnDoee/autotorrent/issues/33

hamany99 commented 2 years ago

Thanks a lot! It worked. The "RPC2" url should be added to the documentation.