-
Problem descriptionAfter updating my NAS the web UI of Transmission can't be accessed anymore. DescriptionRecently I updated my QNAP to QTS 5.2.0. This involved rebooting the NAS, after that I could access all my other containers but the Transmission one remains unreachable as everything request times out. My NAS is still accessible and the router hasn't allocated a new local IP. Below is the docker compose that was working before the restart.
Neither Transmission nor Firefox containers are available. I'm using Portainer to manage everything, from there I can access the console fine. In transmission container when typing
Using Portainer container bash accessThrough Portainer I can access to the container with bash. It was possible for me to see all my seedings and even DL a torrent (took the linux one). Tranmission container doesn't have a firewall activated as shown below:
From my NAS through SSHConnecting to my NAS using SSH I pinged the webui adress and the following is being returned:
I've looked around the discussions but couldn't find any similar case. Any help would be greatly appreciated. [EDIT]: SOLUTION FOUNDSolution came from looking the container info from my NAS. Connecting through SSH on my NAS I then ran the following command Can't explain why the routing is not happening but at least I can connect as a hotfix. I'll keep investigating on my side but I believe it's beyong the scope of this discussion. Discussion will be left open as it might serve other people. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
SOLUTION FOUNDSolution came from looking the container info from my NAS. Connecting through SSH on my NAS I then ran the following command Can't explain why the routing is not happening but at least I can connect as a hotfix. I'll keep investigating on my side but I believe it's beyong the scope of this discussion. Discussion will be left open as it might serve other people. |
Beta Was this translation helpful? Give feedback.
SOLUTION FOUND
Solution came from looking the container info from my NAS. Connecting through SSH on my NAS I then ran the following command
docker inspect openvpn_transmission
which returned all the info you need on your running container.At the very end of it there's a NetworkSettings section detailling how network is handled in the container. In particular the Networks/transmission_default/IPAddress. Typing the given IP address there besides the unmapped port (ie: 9091 in transmission case) I was able to access the UI.
Can't explain why the routing is not happening but at least I can connect as a hotfix. I'll keep investigating on my side but I believe it's beyong the scope of this dis…