Fix Blank qBittorrent WebUI Access | Generated by AI

Home 2026.02

Question: The web UI shows nothing when accessing http://192.168.1.36:8080

Answer:

If nothing shows at http://192.168.1.36:8080 (blank page, timeout, connection refused, or infinite loading), follow these troubleshooting steps in order on your Ubuntu server. Most “nothing shows” cases are caused by one of these: service not running, wrong bind address, firewall, wrong port, config issue, or browser/network problem.

1. Check if the service is actually running

sudo systemctl status qbittorrent-nox

2. Test locally on the server itself

Run this directly on the Ubuntu server (via SSH or console):

curl http://localhost:8080

or

curl http://127.0.0.1:8080

3. Check what is actually listening on port 8080

sudo ss -tuln | grep 8080
# or
sudo netstat -tuln | grep 8080   # if netstat is installed

Fix if bound to localhost only
Edit config (stop service first):

sudo systemctl stop qbittorrent-nox

Then edit (as the qbittorrent user or with sudo):

nano /var/lib/qbittorrent/.config/qBittorrent/qBittorrent.conf
# or wherever your config is (check with find / -name qBittorrent.conf)

Find or add these lines under [Preferences]:

WebUI\Address=0.0.0.0
WebUI\Port=8080
WebUI\Enabled=true

(0.0.0.0 means listen on all interfaces)

Restart:

sudo systemctl start qbittorrent-nox

Alternative: run manually with explicit bind:

sudo -u qbittorrent qbittorrent-nox --webui-port=8080 --webui-address=0.0.0.0

4. Check Ubuntu firewall (ufw)

sudo ufw status

If active, allow the port:

sudo ufw allow 8080/tcp
sudo ufw reload

5. Browser / network checks (from your other computer)

6. Reset WebUI password / config (if login page appears but won’t accept admin/adminadmin)

Stop service → delete or rename config:

sudo systemctl stop qbittorrent-nox
sudo mv /var/lib/qbittorrent/.config/qBittorrent/qBittorrent.conf /var/lib/qbittorrent/.config/qBittorrent/qBittorrent.conf.bak
sudo systemctl start qbittorrent-nox

Run once manually to see temp password in terminal:

sudo -u qbittorrent qbittorrent-nox

7. If service fails to start

Quick one-liner summary to diagnose

sudo systemctl status qbittorrent-nox && sudo ss -tuln | grep 8080 && curl -I http://localhost:8080

Run that and share the output if still stuck — it tells us almost everything.

References:


Back Donate