NRPE Installation (Ubuntu 18.04)
Jump to navigation
Jump to search
The default deployment of Ubuntu 18.04 (Bionic Beaver) does not allow installation of NRPE (package nagios-nrpe-server) without modifying the apt sources. Trying to install results in the following error
me@server:~$ sudo apt install nagios-nrpe-server Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package nagios-nrpe-server
In order to fix you need to add the universe
component to the OS repository source
- Edit the repository sources file
- EG
sudo vi /etc/apt/sources.list
- EG
- Append
universe
to the first line (your file should look like the below) - Update the local cache
sudo apt update
- Install NRPE as normal
udo apt install nagios-nrpe-server
me@server:~$ cat /etc/apt/sources.list deb http://archive.ubuntu.com/ubuntu bionic main universe deb http://archive.ubuntu.com/ubuntu bionic-security main deb http://archive.ubuntu.com/ubuntu bionic-updates main