mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 05:44:50 +00:00
Completing the end which got left off.
parent
1652d96601
commit
6f46d8eeda
1 changed files with 22 additions and 3 deletions
|
@ -32,11 +32,30 @@ Paste this and change user/group to whatever user you want to run the service.
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Radarr Daemon
|
Description=Radarr Daemon
|
||||||
After=syslog.target network.target
|
After=syslog.target network.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
User=<service username>
|
User=<service username>
|
||||||
Group=<service group>
|
Group=<service group>
|
||||||
|
|
||||||
Type=simple
|
Type=simple
|
||||||
ExecStart=/usr/bin/mono /opt/Radarr/Radarr.exe -nobrowser
|
ExecStart=/usr/bin/mono /opt/Radarr/Radarr.exe -nobrowser
|
||||||
TimeoutStopSec=
|
TimeoutStopSec=20
|
||||||
|
KillMode=process
|
||||||
|
Restart=on-failure
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
|
||||||
|
Create the symlink.
|
||||||
|
|
||||||
|
systemctl enable radarr.service
|
||||||
|
|
||||||
|
Start the service.
|
||||||
|
|
||||||
|
service radarr start
|
||||||
|
|
||||||
|
Confirm the service is running.
|
||||||
|
|
||||||
|
service radarr status
|
||||||
|
|
||||||
|
Navigate to http://ipaddress:7878
|
Loading…
Reference in a new issue