Wiki > Prowlarr
"Prowlarr is a indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps."
Installation
Prowlarr is available as an app on your Manage page. Select Manage Apps next to the slot you want to use Prowlarr on. On this page, select Add Prowlarr
and provide your Whatbox password. After a short wait, you can click Open Prowlarr
to open Prowlarr. You can also access Prowlarr from your Manage page.
Automatic Restart (optional)
-
Make a file to be used for the script.
touch ~/prowlarr_restart.cron
-
Edit the file and enter the text below.
nano -w ~/prowlarr_restart.cron
#!/bin/bash if pgrep -fx "/usr/bin/prowlarr" > /dev/null then echo "Prowlarr is running." else echo "Prowlarr is not running, starting Prowlarr" /usr/bin/prowlarr fi exit
-
Save the file with
Ctrl+S
then exit nano withCtrl+X
-
Make the script executable.
chmod +x ~/prowlarr_restart.cron
-
Open your crontab.
EDITOR=nano crontab -e
-
Enter the following text
@reboot /home/user/prowlarr_restart.cron >/dev/null 2>&1 */5 * * * * /home/user/prowlarr_restart.cron >/dev/null 2>&1
-
Save the file with
Ctrl+S
then exit nano withCtrl+X