Skip to content

ruTorrent

IT IS QUITE PROBABLE THAT SOME INFORMATION HERE IS OUTDATED

PLEASE OPEN ISSUES

Change ruTorrent download path after installation

  1. Stop ruTorrent Docker container:
docker stop rutorrent
  1. Edit the rtorrent.rc file:
nano /opt/rutorrent/rtorrent/rtorrent.rc
  1. Set the following options:
directory = /downloads/rutorrent
  1. Start ruTorrent Docker container:
docker restart rutorrent

Enable access to public torrent trackers

By default access to DHT, UDP, and PEX are disabled since most private trackers (and some server providers) do not allow this. Attempting to add a torrent from a public tracker would result in the torrent being stuck, like this:

To enable access to public trackers, do the following:

  1. Stop ruTorrent Docker container:
docker stop rutorrent
  1. Edit the rtorrent.rc file:
nano /opt/rutorrent/rtorrent/rtorrent.rc
  1. Set the following options:
dht.mode.set = on
trackers.use_udp.set = yes
protocol.pex.set = yes
  1. Start ruTorrent Docker container:
docker start rutorrent