CentOS 7.4 安装 yum Zabbix 3.4
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7.4 安装 yum Zabbix 3.4相关的知识,希望对你有一定的参考价值。
Download and install Zabbixhttps://www.zabbix.com/download
安装
安装mariadb
yum install mariadb-server mariadb –y
systemctl enable mariadb
systemctl restart mariadb
安装Zabbix3.4
rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm
yum install zabbix-server-mysql zabbix-web-mysql -y
配置
创建数据库
mysql
MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all privileges on zabbix.* to [email protected] identified by ‘zabbix‘;
Query OK, 0 rows affected (0.08 sec)
MariaDB [(none)]> exit
Bye
导入数据库
zcat /usr/share/doc/zabbix-server-mysql-3.4.8/create.sql.gz |mysql -uzabbix -pzabbix zabb
注意:/usr/share/doc/zabbix-server-mysql-xxx 以实际安装的版本为准
配置数据库用户及密码
vim /etc/zabbix/zabbix_server.conf
124 # Default:
125 DBPassword=zabbix
启动zabbix server并设置开机启动
systemctl enable zabbix-server
systemctl start zabbix-server
编辑Zabbix前端php配置,更改时区
vim /etc/httpd/conf.d/zabbix.conf
php_value date.timezone Asia/Shanghai
启动httpd并设置开机启动
systemctl enable httpd
systemctl start httpd
安装Zabbix Web
浏览器访问,并进行安装
默认用户Admin 默认密码zabbix
zabbxi-agent安装及配置
安装zabbxi-agent
yum install zabbix-agent –y
配置zabbxi-agent
vim /etc/zabbix/zabbix_agentd.conf
修改IP地址server IP地址
97 Server=10.10.10.16
138 ServerActive=10.10.10.16
启动zabbxi-agent并设置开机启动
systemctl enable zabbix-agent.service
systemctl restart zabbix-agent.service
以上是关于CentOS 7.4 安装 yum Zabbix 3.4的主要内容,如果未能解决你的问题,请参考以下文章
简单操作Zabbix安装配置与邮件报警(centos 7.4)
zabbix 3.4.1 安装手册 for CentOS 7.4
CentOS 7.4使用yum源安装MySQL 5.7.20