How to install Zabbix on CENTOS 7
Posted wadelin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了How to install Zabbix on CENTOS 7相关的知识,希望对你有一定的参考价值。
when you have installed zabbix , it is important of changing password.
How to install Zabbix on CENTOS 7
Setup 1 INSTALL
- Create the repos of Zabbix
rpm -ivh https://mirrors.aliyun.com/zabbix/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
- Install software of Zabbix
yum install zabbix-server zabbix-webe zabbix-server-mysql zabbix-web-mysql mariadb-server mariadb zabbix-agent -y
- Modify the zabbix.conf about timezone
vim /etc/httpd/conf.d/zabbix.conf
php_value date.timezone Asia/Shanghai
Setup2 Modify Database
- start database
systemctl start mariadb
- Create User & Database about Zabbix
mysql
create database zabbix character set utf8 collate utf8_bin;
grant all on zabbix.* to zabbix@'localhost' identified by '123456';
exit
cd /usr/share/doc/zabbix-server-mysql-3.2.11/
zcat create.sql.gz |mysql -uzabbix -p123456 zabbix
- Modify zabbix_server.conf
vim /etc/zabbix/zabbix_server.conf
DBHost=localhost
DBName-zabbix
DBUser=zabbix
DBPassword=123456
- Start Zabbix-server
systemctl start zabbix-server
systemctl status zabbix-server
systemctl restart httpd
- Loggin in Http://192.168.56.11/zabbix.php
Admin
zabbix
modify & start zabbix-agent
vim /etc/zabbix/zabbix_agentd.conf
systemctl restart zabbix-agent
It is OK now.
以上是关于How to install Zabbix on CENTOS 7的主要内容,如果未能解决你的问题,请参考以下文章
How to install Zabbix5.0 LTS version with Yum on the CentOS 7.8 system?
How to install Zabbix4.0 LTS version with Yum on the Oracle Linux 7.3 system?
How to install VNC server on CentOS 6
How to install Wine on Ubuntu Linux 64bit