Sonarr version (exact version): 3.0.3.774 OS: Docker Synology
I’m trying to set a new dockered download client (that I love): Rutorrent. All rights are good (Rutorrent downloads properly when using as standalone). But when it comes to connect it with Sonarr, the connection test works, but then, he can’t add the .torrent to rutorrent. Here is the error:
Couldn't add report to download queue. Unable to connect to rTorrent, please check your settings
In settings, connection is “success”. I tried dockered Deluge, and it works properly. Any help? Here is full log: https://pastebin.com/H9QmzyGm
docker containers should not have any issues accessing their own internal drives so if it does then either the image is wrong, or the path its trying to access is actually on a volume that is mapped in and the user id you are running the container as does not have access to it on the host.
can you access it manually? ie does https://192.168.0.2:50000 work for you or is it broken in the same way?
what volume mappings have you set on the container?
is 192.168.0.2 the ip address of your host/nas or the ip address of the rutorrent container on the docker network? there can be issues with containers going up to the host, across that network and then back down into the docker network, you would be better off using the docker ip address in that case (and the original un-mapped port) to access it from the sonarr container.
you can also delete the container and let it re-create in case something went wrong there
The /var/tmp/nginx folder had root:root, that wasn’t normal. I remove all image/container, and recreated a clean install. Now it has abc:abc, and all working fine. Thanks for help @rhom!