From 6f46d8eedacc3c14239159c85926f8684a4815ee Mon Sep 17 00:00:00 2001 From: mmolitor87 Date: Sat, 14 Jan 2017 20:16:17 -0600 Subject: [PATCH] Completing the end which got left off. --- Installation.md | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/Installation.md b/Installation.md index 51a19fe..025f0b9 100644 --- a/Installation.md +++ b/Installation.md @@ -32,11 +32,30 @@ Paste this and change user/group to whatever user you want to run the service. [Unit] Description=Radarr Daemon After=syslog.target network.target - + [Service] User= Group= - + Type=simple ExecStart=/usr/bin/mono /opt/Radarr/Radarr.exe -nobrowser -TimeoutStopSec= \ No newline at end of file +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 \ No newline at end of file