Problem running Deluge on QNAP NAS in Docker

General support for problems installing or using Deluge
Post Reply
stefwill
New User
New User
Posts: 1
Joined: Mon Dec 13, 2021 6:47 am

Problem running Deluge on QNAP NAS in Docker

Post by stefwill »

Hi everyone,
I'm having some "fun" getting Deluge working in Docker on my QNAP NAS.
Everything seems to launch as I expect but I'm getting a warning in the logs that I have no idea how to deal with it.
Host IP, port 8112 shows a blank page.

Can anyone point me in the right direction for a solution? Where should I be looking?
All assistance is greatly appreciated.

Code: Select all

[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-envfile: executing... 
[cont-init.d] 01-envfile: exited 0.
[cont-init.d] 01-migrations: executing... 
[migrations] started
[migrations] no migrations found
[cont-init.d] 01-migrations: exited 0.
[cont-init.d] 10-adduser: executing... 

-------------------------------------
          _         ()
         | |  ___   _    __
         | | / __| | |  /  \ 
         | | \__ \ | | | () |
         |_| |___/ |_|  \__/


Brought to you by linuxserver.io
-------------------------------------

To support LSIO projects visit:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid:    1001
User gid:    100
-------------------------------------

[cont-init.d] 10-adduser: exited 0.
[cont-init.d] 30-config: executing... 
[cont-init.d] 30-config: exited 0.
[cont-init.d] 90-custom-folders: executing... 
[cont-init.d] 90-custom-folders: exited 0.
[cont-init.d] 99-custom-scripts: executing... 
[custom-init] no custom files found exiting...
[cont-init.d] 99-custom-scripts: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
10:39:30 [WARNING ][deluge.i18n.util           :83  ] IOError when loading translations: [Errno 2] No translation file found for domain: 'deluge'
10:58:26 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.4)
10:58:26 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.4)
10:58:26 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.4)
11:04:42 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.6)
11:04:42 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.6)
11:04:42 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.6)
11:07:37 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.5)
11:07:37 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.5)
11:07:37 [ERROR   ][deluge.ui.web.auth         :256 ] Login failed (ClientIP 10.0.3.5)
That is it.

This is my deluge.yml

Code: Select all

version: "3"
services:
  deluge:
    cap_add:
      - AUDIT_WRITE
      - CHOWN
      - DAC_OVERRIDE
      - FOWNER
      - FSETID
      - KILL
      - MKNOD
      - NET_BIND_SERVICE
      - NET_RAW
      - SETFCAP
      - SETGID
      - SETPCAP
      - SETUID
      - SYS_CHROOT
    cap_drop:
      - AUDIT_CONTROL
      - BLOCK_SUSPEND
      - DAC_READ_SEARCH
      - IPC_LOCK
      - IPC_OWNER
      - LEASE
      - LINUX_IMMUTABLE
      - MAC_ADMIN
      - MAC_OVERRIDE
      - NET_ADMIN
      - NET_BROADCAST
      - SYSLOG
      - SYS_ADMIN
      - SYS_BOOT
      - SYS_MODULE
      - SYS_NICE
      - SYS_PACCT
      - SYS_PTRACE
      - SYS_RAWIO
      - SYS_RESOURCE
      - SYS_TIME
      - SYS_TTY_CONFIG
      - WAKE_ALARM
    container_name: deluge
    entrypoint:
      - /init
    environment:
      - HOME=/root
      - PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
      - PS1=$(whoami)@$(hostname):$(pwd)$
      - PYTHON_EGG_CACHE=/config/plugins/.python-eggs
      - TERM=xterm
      - PGID=100
      - PUID=1001
      - LANGUAGE=en_US.UTF-8
      - LANG=en_US.UTF-8
      - TZ=Australia/Melbourne
    expose:
      - 58846/tcp
      - 58946/tcp
      - 58946/udp
      - 8112/tcp
    hostname: 8bfc06c1bbf0
    image: docker.io/linuxserver/deluge:latest
    ipc: private
    labels:
      build_version: 'Linuxserver.io version:- 143 Build-date:- October-19-2018-22:11:41-UTC'
      com.qnap.qcs.gpu: False
      com.qnap.qcs.network.mode: nat
      maintainer: sparklyballs
      org.opencontainers.image.authors: linuxserver.io
      org.opencontainers.image.created: 2021-11-10T03:39:24+01:00
      org.opencontainers.image.description: "[Deluge](http://deluge-torrent.org/)\
        \ is a lightweight, Free Software, cross-platform BitTorrent client.    *\
        \ Full Encryption  * WebUI  * Plugin System  * Much more...  "
      org.opencontainers.image.documentation: https://docs.linuxserver.io/images/docker-deluge
      org.opencontainers.image.licenses: GPL-3.0-only
      org.opencontainers.image.ref.name: 0583cfbde57fc89a8de6eab14151f7c331ec8021
      org.opencontainers.image.revision: 0583cfbde57fc89a8de6eab14151f7c331ec8021
      org.opencontainers.image.source: https://github.com/linuxserver/docker-deluge
      org.opencontainers.image.title: Deluge
      org.opencontainers.image.url: https://github.com/linuxserver/docker-deluge/packages
      org.opencontainers.image.vendor: linuxserver.io
      org.opencontainers.image.version: 2.0.3-2201906121747ubuntu18.04.1-ls128
    logging:
      driver: json-file
      options:
        max-file: 10
        max-size: 10m
    restart: always
    stdin_open: true
    ulimits:
      - Hard: 65535
        Name: nofile
        Soft: 65535
    volumes:
      - /share/torrents/incomplete:/downloads/incomplete
      - /share/appdata/deluge:/config
      - /share/torrents:/downloads
networks: {}
mhertz
Moderator
Moderator
Posts: 2215
Joined: Wed Jan 22, 2014 5:05 am
Location: Denmark

Re: Problem running Deluge on QNAP NAS in Docker

Post by mhertz »

Quick lookup possibly indicate either your system time is wrong(ntp not setup reporter mentioned culprit at end), or maybe need set interface to 0.0.0.0 in /config/web.conf, or something like that, please read this thread regarding: https://github.com/linuxserver/docker-deluge/issues/74

Edit: Older reports here, of blank page webui, resolved at times by nuking your config and restart.
Post Reply