After Recreating Docker Image, Web UI Not Visible

Creating a bug report/issue

I have searched the internet as well as open and closed issues. It’s hard to find if anyone has had the very same issue.

Required Information

  • DietPi version | 9
  • Distro version | bookworm 0
  • Kernel version | Linux DietPi 6.1.21-v8+ #1642 SMP PREEMPT Mon Apr 3 17:24:16 BST 2023 aarch64 GNU/Linux
  • Architecture | arm64
  • SBC model | RPi 4 Model B (aarch64)

Additional Information (if applicable)

  • Software title | Docker / Portainer / QBittorrent
  • Was the software title installed freshly or updated/migrated? Re-installed
  • Can this issue be replicated on a fresh installation of DietPi? Yes

Steps to reproduce

  1. Install Docker with a Portainer Container
  2. Add a QBittorrent container through the Portainer UI, make the UI Port 8080
  3. SSH into the Pi, run the command to remove QBittorrent container:
docker container rm -f qbittorrent
  1. Through the Portainer UI, recreate the QBittorrent Container and give it the same UI port as before (8080).
  2. The QBittorrent UI refuses to connect and cannot be reached through any internet browser even though the following commands claim that everything is okay:
docker logs -f qbittorrent

and

docker container ls

Expected behaviour

The UI for the container should be reachable through an internet browser since the container was rebuilt.

Actual behaviour

Removing the container using the command line seems to have a negative effect on that particular port. After recreating the container and using the same port for its UI, a connection error is shown when attempting to view the UI through an internet browser.

Extra details

I messed up. I was trying to stop my entire Docker instance so I could change configuration values in the QBittorrent container. I couldn’t stop Docker though because Portainer was running and I didn’t know what I was doing. I struggled stopping Portainer so I eventually just removed the Portainer container. That’s when things got bad. Reinstalling Portainer meant I had to reinstall QBittorrent. So I did all that but now I’m having this issue where the QBittorrent UI isn’t showing up. I had the same problem with Portainer but I managed to fix it by using a port that was different from the previous one. I’m sure I could do the same for QBittorrent, but I would really love to know why this is happening…

After running

sudo ss -ltn

I see that 8080 isn’t even in the list. I think this means 8080 is not open on my rpi.

Simply stop Portainer container :wink:

following should do

docker container stop portainer

That’s not correct. Both container are independent from each other. Means Qbit will continue running even if Portainer has been removed.

Can you check for available container

docker container ps -all

you can check for ports in use as well

ss -tulpn | grep LISTEN

Thank you. Yes I freely admit I didn’t know what I was doing. Regardless the problem remains. Running

ss -tulpn | grep LISTEN

I see that 8080 isn’t even in the list.

Running

docker container ps -all

Shows my QBittorrent container:

how do you start/create your container?

Btw: no need to do screen prints. Simply copy all needed logs from SSH/Putty

The container is set up to start automatically unless stopped. I created it through the Portainer UI using the ‘Add Container’ button. I followed a tutorial here: medium tutorial for setting up a torrent box.

something seems to be wrong on your container port configuration. Best to drop this container and to create a new one. You can follow the official docs linuxserver/qbittorrent

Thank you. I’ll give it a try.

This topic was automatically closed 178 days after the last reply. New replies are no longer allowed.