提示:
需要提前安装Docker
根据qBittorrent官网的更新日志https://www.qbittorrent.org/news ,4.6.1.0包含一个重大更新。可以看到自4.6.1.0开始,qBittorrent将弃用adminadmin默认密码,采用随机密码,将在终端控制台输出显示,用户名依然是admin。
配置文件地址: config/qBittorrent/qBittorrent.conf
如果因多次密码错误IP地址被禁止登录,重启qbittorrent 或者设备即可
linuxserver/qbittorrent - Docker Image | Docker Hub
主要通过在远程Linux设备上通过 qBittorrent 进行BT下载资源
1、下载 qBittorrent 镜像
docker pull linuxserver/qbittorrent
可以看到当前版本是4.6.4
2、创建一个qBittorrent的容器.
模板:
docker create \
--name=qbittorrent \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Asia/Shanghai \
-p 6881:6881 \
-p 6881:6881/udp \
-p 8080:8080 \
-v /path/to/config:/config \
-v /path/to/downloads:/downloads \
--restart unless-stopped \
linuxserver/qbittorrent
修改:
docker create \
--name=qbittorrent \
-e TZ=Asia/Shanghai \
-p 6881:6881 \
-p 6881:6881/udp \
-p 8080:8080 \
-v /atang/Downloads/config:/config \
-v /atang/Downloads:/downloads \
--restart unless-stopped \
linuxserver/qbittorrent
# puid pgid 可自定义也可系统生成
# -p 8080:8080 \ 可以修改为 宿主机(外网)18080 : docker8080
# -v /atang/Downloads/config:/config \ 宿主机(真实磁盘路径) : docker内路径
3、 启动容器
docker start qbittorrent
我们可以通过浏览器访问玩客云的IP地址和8080端口,进入qBittorrent的Web界面,进行BT下载。4.6.1版本之前默认的用户名和密码是admin/adminadmin,可以在Web界面中进行修改。
也可以通过 atang@ubuntu:config/qBittorrent# docker logs 2ed5 获取 临时密码
老版本升级:
Known Issue: qBittorrent 4.6.1 Web UI Password | Info :: LinuxServer.io