Nagios Repositories

As of November 15th, 2023 All new packages will be signed with a new GPG Key.
For older packages use this key - GPG-KEY-NAGIOS-V2.

DEB Repositories

These repos are for online installations of NCPA on Debian operating systems.

Currently Built Versions

Name OS Location Available Public GPG Key
Nagios Debian 12 ("Bookworm") https://repo.nagios.com/deb/bookworm packages GPG-KEY-NAGIOS-V3
Nagios Debian 11 ("Bullseye") https://repo.nagios.com/deb/bullseye packages

Previous Versions (Unsupported)

Name OS Location Available Public GPG Key
Nagios Debian 10 ("Buster") https://repo.nagios.com/deb/buster packages GPG-KEY-NAGIOS-V3
Nagios Debian 9 ("Stretch") https://repo.nagios.com/deb/stretch packages
Nagios Debian 8 ("Jessie") https://repo.nagios.com/deb/jessie packages
Nagios Debian 7 ("Wheezy") https://repo.nagios.com/deb/wheezy packages

Installation of Nagios Repo

Execute the following commands:

# Create folder to place the GPG key
apt-get install apt-transport-https
sudo mkdir -m 0755 -p /etc/apt/keyrings/

# Add the GPG key
curl -fsSL https://repo.nagios.com/GPG-KEY-NAGIOS-V3 
    | sudo gpg --dearmor -o /etc/apt/keyrings/GPG-KEY-NAGIOS-V3.gpg

# Add the repository with the our GPG key
echo "Types: deb
URIs: https://repo.nagios.com/deb/$(lsb_release -cs)
Suites: /
Signed-By: /etc/apt/keyrings/GPG-KEY-NAGIOS-V3.gpg" 
    | sudo tee /etc/apt/sources.list.d/nagios.sources > /dev/null

# Update your repositories
sudo apt-get update

If you are using an older OS or would like to use the legacy (less secure) method follow these steps:

# Add to the apt sources list
apt-get install apt-transport-https
echo "deb https://repo.nagios.com/deb/$(lsb_release -cs) /" > /etc/apt/sources.list.d/nagios.list

# Add our public GPG key
wget -qO - https://repo.nagios.com/GPG-KEY-NAGIOS-V3 | apt-key add -

# Update your repositories
apt-get update

Installation and Upgrade of NCPA

apt-get install ncpa