I want to start by start by remarking on how FEW issues I’ve had with Linuxserver containers over the years. Thank you for the work you all put into these.
Issue: I do a daily pull for updates and noticed today that new torrents added to qBittorrent get immediately stuck in a Stalled
state and has no peers.
The last time I had any issue with this container was due to how updates in qBittorrent interacted with MergerFS which I was able to correct in MerferFS fstab settings and I’ve been good until now. I suspect it is not due to an interaction with MergerFS because re-checks go just fine. It seems to be some kind of networking issue.
Something else that points to networking issues is the fact that the trackers I use also reported that I was seeding nothing, despite having 2300+ torrents in qb. That all went back to normal after pulling down the tag specified below.
Based on my interaction with lsio support last time, I have tried running specific tags to see what works as I go backward and noticed that libtorrentv1-version-release-4.6.7_v1.2.19
is working for me. I’m hoping that that information might help zero in on my issue so I can go about fixing it.
Pertinent portion of docker compose:
qbittorrent:
#image: lscr.io/linuxserver/qbittorrent:latest
image: lscr.io/linuxserver/qbittorrent:libtorrentv1-version-release-4.6.7_v1.2.19
container_name: qbittorrent
cpu_shares: 1023
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- WEBUI_PORT=8282
volumes:
- /opt/qbittorrent:/config
- /mnt/cstor:/stor
- /home/user/downloads:/watch
ports:
- 50000:50000
- 50000:50000/udp
- 8282:8282
restart: unless-stopped
Without changing anything else besides which qb image I pull, it works as you see it here but is broken using latest
.
In case it’s part of the issue again, here is my fstab showing how MergerFS is set up:
## Media disks setup for mergerfs and snapraid
# Map cache to 1TB SSD
/dev/disk/by-id/ata-Samsung_SSD_860_EVO_1TB_S3Z8NB0K820469N-part1 /mnt/ssd1 xfs defaults 0 0
# Map storage and parity. All spinning disks.
/dev/disk/by-id/ata-WDC_WD100EZAZ-11TDBA0_JEK39X4N-part1 /mnt/par1 xfs defaults 0 0
/dev/disk/by-id/ata-WDC_WD100EZAZ-11TDBA0_JEK3TY5N-part1 /mnt/disk01 xfs defaults 0 0
/dev/disk/by-id/ata-WDC_WD100EZAZ-11TDBA0_JEK4806N-part1 /mnt/disk02 xfs defaults 0 0
/dev/disk/by-id/ata-WDC_WD100EZAZ-11TDBA0_JEK4H0RN-part1 /mnt/disk03 xfs defaults 0 0
/dev/disk/by-id/ata-WDC_WD30EFRX-68EUZN0_WD-WCC4N4XFT0TS-part1 /mnt/disk04 xfs defaults 0 0
/dev/disk/by-id/ata-WDC_WD30EFRX-68EUZN0_WD-WCC4N4XFT1YS-part1 /mnt/disk05 xfs defaults 0 0
/dev/disk/by-id/ata-WDC_WD30EFRX-68EUZN0_WD-WCC4N4XFT3EK-part1 /mnt/disk06 xfs defaults 0 0
/dev/disk/by-id/ata-WDC_WD30EFRX-68EUZN0_WD-WCC4N6CKJJ6P-part1 /mnt/disk07 xfs defaults 0 0
# Setup mergerfs backing pool
/mnt/disk* /mnt/stor fuse.mergerfs defaults,nonempty,allow_other,use_ino,inodecalc=path-hash,cache.files=off,moveonenospc=true,dropcacheonclose=true,link_cow=true,minfreespace=1000G,category.create=pfrd,fsname=mergerfs 0 0
# Setup mgergerfs caching pool
/mnt/ssd1:/mnt/disk* /mnt/cstor fuse.mergerfs defaults,nonempty,allow_other,use_ino,inodecalc=path-hash,cache.files=partial,moveonenospc=ff,dropcacheonclose=true,minfreespace=10G,category.create=ff,fsname=cachemergerfs 0 0
Please let me know if any other system information would be helpful.