Today want to try using open source monitor tool. Below is the guide for Centos 7 (x86_64). We will using yum and wget.
First close firewall, selinux and reboot
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config systemctl disable --now firewalld reboot
Go to Zabbix Official Repository Download zabbix-release-3.4-1.el7.centos.noarch.rpm and download it.
wget https://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm yum localinstall zabbix-release-3.4-1.el7.centos.noarch.rpm
install zabbix server and agent
yum -y install zabbix-get zabbix-server-mysql zabbix-web-mysql zabbix-agent cd /usr/share/doc/zabbix-server-mysql-3.4.6/
Add below lines to zabbix_server.conf
DBHost=localhost DBPassword=password DBName=zabbix
Install Zabbix mysql Database.
yum -y install mariadb-server systemctl start mariadb systemctl enable mariadb mysql_secure_installation
Create Zabbix database for store all data
mysql -u root -p create database zabbix; grant all privileges on zabbix.* to [email protected]'localhost' identified by 'password'; grant all privileges on zabbix.* to [email protected]'%' identified by 'password'; flush privileges; \q
ref: https://technologyrss.com/how-install-zabbix-server-centos-7/