Fix qBittorrent WebUI Binding Issue | Generated by AI

Home 2026.02

Question: Why is –webui-address=0.0.0.0 an unknown command line parameter for qbittorrent-nox, and how to make the WebUI listen on all interfaces?

Answer:

The error occurs because --webui-address is not a valid command-line option for qbittorrent-nox. The supported command-line flags are very limited (you can see them by running qbittorrent-nox --help).

From the official help output and man pages, the available options include:

There is no --webui-address flag at the command line.

Default behavior
By default, the qBittorrent WebUI (including in qbittorrent-nox) listens on all network interfaces (0.0.0.0:8080 for IPv4 and usually the equivalent for IPv6) — not just localhost.
This means it is already accessible remotely (e.g. http://your-server-ip:8080) unless blocked by:

Correct command
Your command should simply be:

/usr/bin/qbittorrent-nox --webui-port=8080 --daemon

(or omit --webui-port=8080 if you want the default port).

If you want to force a specific IP (not usually needed)

Alternatively, you can edit the config file directly (usually ~/.config/qBittorrent/qBittorrent.conf):

[Preferences]
WebUI\Address=0.0.0.0
WebUI\Port=8080

Quick troubleshooting checklist

References:


Back Donate