Again without the use of docker…
First install qbittorent.
apt-get install qbittorrent-nox
Create a user.
adduser qbtuser
Create a systemd script in order to start/stop Qbittorent. This example uses port TCP/9090 to access Qbittorent web interface.
nano /etc/systemd/system/qbittorrent-nox.service
[Unit]
Description=qBittorrent Daemon Service
Documentation=man:qbittorrent-nox(1)
Wants=network-online.target
After=network-online.target nss-lookup.target
[Service]
Type=forking
User=qbtuser
Group=qbtuser
ExecStart=/usr/bin/qbittorrent-nox -d --webui-port=9090
Restart=on-failure
[Install]
WantedBy=multi-user.target
Reload the systemd daemon for the changes to take affect.
systemctl daemon-reload
Enable and start the service
systemctl enable qbittorrent-nox.service systemctl start qbittorrent-nox.service
Change user to nologin
usermod -s /usr/sbin/nologin qbtuser
Access Qbittorent at port TCP/9090 with the following credentials :
Username: admin
Password: adminadmin
Following your instruction unable to login WebGUI.
Invalid password or user name.
Something wrong somewhere.
Which WebGui you cannot access?
Unable to login Qbittorent web interface.
I was trying to follow your instruction on OMV4 and OMV5, the same result:
“Invalid password or user name.”
As far as I can remember, you use the default user/pass that it is provider by qbittorent in order to access the webgui. Then you change the password. Let me install it again just to remember the whole procedure and I let you know
Try the following :
Username: admin
Password: adminadmin
Using
“Username: admin
Password: adminadmin”
works at new Qbittorent installation on OMV4.
Thanks a lot.