deluge-web service not starting on boot

General support for problems installing or using Deluge
Post Reply
Ouroboruss
Member
Member
Posts: 17
Joined: Tue Jul 09, 2019 11:20 pm

deluge-web service not starting on boot

Post by Ouroboruss »

Hey

I have setup systemd service files so that deluged and deluge-web starts on boot.

Deluged starts up without an issue but deluge-web doesnt. When I check the status of the service i see this:

Code: Select all

media@raspberrypi:~ $ systemctl status deluge-web.service 
● deluge-web.service - Deluge Bittorrent Client Web Interface
     Loaded: loaded (/etc/systemd/system/deluge-web.service; enabled; vendor pres>
    Drop-In: /etc/systemd/system/deluge-web.service.d
             └─user.conf
     Active: inactive (dead)
       Docs: man:deluge-web
However, if I run "systemctl start deluge-web" it starts up without an issue.

I have searched the journalctl logs, sys logs and deluge-web logs but I cant see any errors, im not sure what else I can check?

Here is the deluged and deluge-web service files:

deluged

Code: Select all

[Unit]
Description=Deluge Bittorrent Client Daemon
Documentation=man:deluged
After=network-online.target

[Service]
Type=simple
UMask=007

ExecStart=/usr/bin/deluged -d -l /var/log/deluge/daemon.log -L warning --logrotate

Restart=on-failure

#Time to wait before forcefully stopped.
TimeoutStopSec=300

[Install]
WantedBy=multi-user.target
deluge-web

Code: Select all

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

[Service]
Type=simple
UMask=027

ExecStart=/usr/bin/deluge-web -d -l /var/log/deluge/web.log -L warning --logrotate

Restart=on-failure

[Install]
WantedBy=mutli-user.target
Ouroboruss
Member
Member
Posts: 17
Joined: Tue Jul 09, 2019 11:20 pm

Re: deluge-web service not starting on boot

Post by Ouroboruss »

Dont worry! answered my own question!

It was multi's fault :P
Post Reply