I followed the instructions on http://dev.deluge-torrent.org/wiki/User ... ce/systemd to configure Deluge however the Deluge daemon is not starting. It is not even writing to the log files.
The web service is working properly. I created the deluge user and group and enabled the service using
Code: Select all
systemctl enable /etc/systemd/system/deluged.service
Code: Select all
[Unit]
Description=Deluge Bittorrent Client Daemon
After=network-online.target
[Service]
Type=simple
User=deluge
Group=deluge
UMask=007
ExecStart=/usr/bin/deluged -d -l /var/log/deluge/daemon.log -L warning
Restart=on-failure
# Configures the time to wait before service is stopped forcefully.
TimeoutStopSec=300
[Install]
WantedBy=multi-user.target
However this the text I get when I do a status:
Code: Select all
XXXXX@lois:/etc/systemd/system$ sudo systemctl status deluged
● deluged.service - Deluge Bittorrent Client Daemon
Loaded: loaded (/etc/systemd/system/deluged.service; enabled; vendor preset: enabled)
Active: inactive (dead) (Result: exit-code) since Sun 2016-07-31 22:36:34 EDT; 4min 22s ago
Main PID: 11465 (code=exited, status=203/EXEC)
Jul 31 22:36:34 lois systemd[1]: deluged.service: Service hold-off time over, scheduling restart.
Jul 31 22:36:34 lois systemd[1]: Stopped Deluge Bittorrent Client Daemon.
Jul 31 22:36:34 lois systemd[1]: deluged.service: Start request repeated too quickly.
Jul 31 22:36:34 lois systemd[1]: Failed to start Deluge Bittorrent Client Daemon.
Thanks in advance.