zabbix 3.0快速安装简介

Posted shhnwangjian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zabbix 3.0快速安装简介相关的知识,希望对你有一定的参考价值。

zabbix快速安装

系统版本:centos 7

通过yum方法安装Zabbix3.0,安装源为阿里云

yum源配置

rpm -ivh http://mirrors.aliyun.com/zabbix/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm

安装

yum install zabbix-server zabbix-agent zabbix-web zabbix-get zabbix-server-mysql zabbix-web-mysql mariadb-server mariadb -y

修改php时区配置

sed -i \'s@# php_value date.timezone Europe/Riga@php_value date.timezone Asia/Shanghai@g\' /etc/httpd/conf.d/zabbix.conf

启动数据库

systemctl start mariadb

创建zabbix数据库及用户

mysql
create database zabbix character set utf8 collate utf8_bin;
grant all on zabbix.* to zabbix@\'localhost\' identified by \'zabbix\';
exit
cd /usr/share/doc/zabbix-server-mysql-3.0.5
zcat create.sql.gz |mysql -uzabbix -pzabbix zabbix

修改zabbix配置

# vim /etc/zabbix/zabbix_server.conf
DBHost=localhost    #数据库所在主机
DBName=zabbix       #数据库名 
DBUser=zabbix       #数据库用户 
DBPassword=zabbix   #数据库密码 

启动zabbix及http

systemctl start zabbix-server
systemctl start httpd

web界面配置

http://ip:port/zabbix/setup.php

 

 

用户名Admin 密码zabbix

agent配置

vim /etc/zabbix/zabbix_agentd.conf     
Server=192.168.137.11               #用于被动模式,数据获取
ServerActive=192.168.137.11         #用于主动模式,数据提交
systemctl start zabbix-agent       #启动zabbix agent

 

以上是关于zabbix 3.0快速安装简介的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 7.2安装zabbix 3.0 LTS

Zabbix 3.0入门到企业实战二(zabbix介绍与安装)

Zabbix培训视频-3.0版本安装

zabbix3.0/3.2/3.4自动安装脚本

Zabbix 3.0安装

zabbix 3.0 监控的安装