Install NRPE on CentOS 7

1) Install required packages yum -y install wget openssl-devel 2)  Download latest NRPE agent   cd /tmp wget http://assets.nagios.com/downloads/nagiosxi/agents/linux-nrpe-agent.tar.gz   3)  Unzip NRPEagent tar xzf linux-nrpe-agent.tar.gz 4)  Install agent   cd linux-nrpe-agent ./fullinstall You will get asked which hosts to add. include your Nagios Server here In this case my Nagios server is 10.0.0.50 6)  Read More…

Installing Puppet Agent on Ubuntu 16.04

Problem: When trying to install the puppet agent on an Ubuntu 16.04 server the following error appeared Command:  ​curl -k https://puppet:8140/packages/current/install.bash | sudo bash   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current Dload  Upload   Total   Spent    Left  Speed 100 25756  100 25756    0     0   162k      0 –:–:– –:–:– –:–:–  163k Read More…

Zabbix Graphs Showing Incorrect Time

Problem: After a new installation of Zabbix (appliance) 3.4.6 the time on the graphs were 2 hours ahead. The clock on the server was correct.   Solution Edit Zabbix configuration file vi /etc/apache2/conf-enabled/zabbix.conf   It appeared the timezone in the Zabbix settings is set to Europe/Riga Change php_value date.timezone Europe/Riga to you actual timezone for Read More…

Install Zabbix Agent on CentOS

The following describes how to install Zabbix agent 3.4.6 onto CentOS 6.9 1) Add Zabbix Repository rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/6/x86_64/zabbix-release-3.4-1.el6.noarch.rpm   2) Install Zabbix yum install -y zabbix-agent   3) . Edit zabbix_agentd.conf vi /etc/zabbix/zabbix_agentd.conf Server={Zabbix_Monitoring_server} Hostname={your_server_name}   4) Start Zabbix agent service service zabbix-agent start   5) Add Zabbix Agent service to start up scripts Read More…