Whatbox Logo
Login for certain variables to be updated with your slot's information

Wiki > notifiarr

This app is not supported by Whatbox.

Needs a valid configuration file created and pointed to using -c

Example configuration file https://github.com/Notifiarr/notifiarr/blob/main/examples/notifiarr.conf.example

  1. mkdir -p ~/notifiarr
  2. cd ~/notifiarr
  3. wget wget https://github.com/Notifiarr/notifiarr/releases/download/v0.8.3/notifiarr-0.8.3-2118-x86_64.pkg.tar.zst
  4. tar --zstd -xvf notifiarr-0.8.3-2118-x86_64.pkg.tar.zst -C ~/notifiarr/
  5. mkdir -p ~/notifiarr/config
  6. ~/notifiarr/usr/bin/notifiarr init -c ~/notifiarr/config/config.conf
  7. copy and paste contents of example conf file to yours, edit api_key create ui_password edit port for bind_addr default notifiarr port is in use by whatbox so 30067 has been generated for you
  8. run screen screen -S notifiarr
  9. run notifiarr ~/notifiarr/usr/bin/notifiarr -c ~/notifiarr/config/config.conf
  10. detach from screen CTRL+A the D

You will be able to access Ombi at http://server.whatbox.ca:30067 when Ombi has started up.

Automatically Restart Notifiarr

Below are steps to take to have your Notifiarr instance automatically restart if it crashes, or if the server is rebooted.

  1. Make a file to be used for the script. touch ~/notifiarr_restart.cron
  2. Edit the file and enter the text below. nano -w ~/notifiarr_restart.cron
 #!/bin/bash
 if pgrep -x "notifiarr" > /dev/null
 then
     echo "Notifiarr is running."
 else 
     echo "Notifiarr is not running, starting Notifiarr"
     cd ~/notifiarr/; screen -dmS notifiarr ~/notifiarr/usr/bin/notifiarr -c ~/notifiarr/config/config.conf
 fi
 exit
  1. Save the file with Ctrl+x and the y and Enter to accept overwriting.
  2. Make the script executable. chmod +x ~/notifiarr_restart.cron
  3. Open your crontab. EDITOR=nano crontab -e
  4. Enter the following text
 @reboot /home/user/ombi_restart.cron >/dev/null 2>&1
*/5 * * * * /home/user/ombi_restart.cron >/dev/null 2>&1