Month: April 2015

  • NRPE Installation and Configuration on the client machine

    1) Install the required packages in preparation to install NRPE. [root@MACHINE1 ~]# yum install -y gcc glibc glibc-common gd gd-devel make net-snmp openssl-devel 2) Add nagios username and update the password. [root@MACHINE1 ~]# useradd nagios [root@MACHINE1 ~]# passwd nagios Changing password for user nagios. New password: mypassword Retype new password: mypassword passwd: all authentication tokens…

  • Nagios Installation

    1) Install Required Dependencies #yum install -y httpd php gcc glibc glibc-common gd gd-devel make net-snmp 2) Create Nagios User and Group #useradd nagios #groupadd nagcmd 3) Next, add both the nagios user and the apache user to the nagcmd group. #usermod -G nagcmd Nagios #usermod -G nagcmd apache 4) Create Nagios directory. #mkdir /root/nagios…