Edited autostart section

master
Abzie 7 years ago
parent 05fb50839b
commit 524e82b49d

@ -61,47 +61,6 @@ https://aur.archlinux.org/packages/radarr/
---
### Autostart systemd ###
### Autostart Radarr on Linux ###
Create the service file.
touch /etc/systemd/system/radarr.service
Open with nano or an editor of your choice.
nano /etc/systemd/system/radarr.service
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=<service username>
Group=<service group>
Type=simple
ExecStart=/usr/bin/mono /opt/Radarr/Radarr.exe -nobrowser
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
Follow [this Wiki article](https://github.com/Radarr/Radarr/wiki/Autostart-on-Linux) relevent to your Distro.
Loading…
Cancel
Save