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
mkdir -p ~/notifiarr
cd ~/notifiarr
wget wget https://github.com/Notifiarr/notifiarr/releases/download/v0.8.3/notifiarr-0.8.3-2118-x86_64.pkg.tar.zst
tar --zstd -xvf notifiarr-0.8.3-2118-x86_64.pkg.tar.zst -C ~/notifiarr/
mkdir -p ~/notifiarr/config
~/notifiarr/usr/bin/notifiarr init -c ~/notifiarr/config/config.conf
- copy and paste contents of example conf file to yours, edit
api_key
createui_password
edit port forbind_addr
default notifiarr port is in use by whatbox so30067
has been generated for you - run screen
screen -S notifiarr
- run notifiarr
~/notifiarr/usr/bin/notifiarr -c ~/notifiarr/config/config.conf
- detach from screen
CTRL+A
theD
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.
- Make a file to be used for the script.
touch ~/notifiarr_restart.cron
- 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
- Save the file with
Ctrl+x
and they
andEnter
to accept overwriting. - Make the script executable.
chmod +x ~/notifiarr_restart.cron
- Open your crontab.
EDITOR=nano crontab -e
- Enter the following text
@reboot /home/user/ombi_restart.cron >/dev/null 2>&1
*/5 * * * * /home/user/ombi_restart.cron >/dev/null 2>&1