Deluge Web not working using the script from official forum

General support for problems installing or using Deluge
Post Reply
djarash3000
New User
New User
Posts: 1
Joined: Fri Jun 05, 2020 7:18 pm

Deluge Web not working using the script from official forum

Post by djarash3000 »

Hi there,

I cannot get the Deluge web to start working with this code. If I remove ' -d ' then it works.

Code: Select all

[Unit]
Description=Deluge Bittorrent Client Web Interface
Documentation=man:deluge-web
After=network-online.target deluged.service
Wants=deluged.service

[Service]
Type=simple
UMask=000

ExecStart=/usr/bin/deluge-web -c "/home/pi/hdd1/Deluge/.config"

Restart=on-failure

[Install]
WantedBy=multi-user.target

eld
New User
New User
Posts: 5
Joined: Sun Jun 23, 2019 11:40 pm

Re: Deluge Web not working using the script from official forum

Post by eld »

Ubuntu 18.04, what I have

Code: Select all

[Unit]
Description=Deluge Bittorrent Client Web Interface
After=network-online.target

[Service]
Type=simple
User=deluge
Group=deluge
UMask=027

ExecStart=/usr/bin/deluge-web -d

Restart=on-failure

[Install]
WantedBy=multi-user.target
According to the man page

Code: Select all

       -d, --do-not-daemonize
              Do not daemonize (fork) this process
So removing the -d really should not matter in this case. Should also be less of a thing as time goes on.
Post Reply