zabbix 安装

zabbix安装

准备环境
1.联网 
2.同步时间
yum install ntpdate -y
ntpdate -u ntp.aliyun.com
3.关闭防火墙

1.获取zabbix 官方源

rpm -Uvh https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm

替换zabbix yum源为阿里云

sed -i ‘s#http://repo.zabbix.com#https://mirrors.aliyun.com/zabbix#’ /etc/yum.repos.d/zabbix.repo

清理yum缓存

yum clean all

2.安装 zabbix server 和agent

yum -y install zabbix-server-mysql zabbix-agent -y

3.安装 Software Collections 具体上网查

yum install centos-release-scl -y

4.修改zabbix yum源

vim /etc/yum.repos.d/zabbix.repo 

[zabbix-frontend] 
name=Zabbix Official Repository frontend - $basearch
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/$b asearch/frontend
enabled=1  ###修改这里
gpgcheck=1 
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591

5.安装zabbix前端环境

yum install zabbix-web-mysql-scl zabbix-apache-conf-scl -y

6.安装zabbix所需的数据库,直接用centos7自带的mariadb

yum install mariadb-server -y

7.启动数据库 并开机启动

systemctl enable --now mariadb

8.初始化数据库 设置root 密码 123123

mysql_secure_installation

9.授权zabbix用户,建立zabbix数据库

create database zabbix character set utf8 collate utf8_bin;
create user zabbix@localhost identified by '123123';
grant all privileges on zabbix.* to zabbix@localhost;
flush privileges;
quit;

10.导入数据库 数据库用户为zabbix 密码为123123

zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
# -P 后是zabbix数据库

11.修改zabbix密码

vi /etc/zabbix/zabbix_server.conf
DBPassword= 123123  # 密码

12.修改zabbix 时区

vi /etc/opt/rh/rhphp72/php-fpm.d/zabbix.conf
php_value[date.timezone] = Asia/Shanghai

13.启动相关服务

systemctl restart zabbix-server zabbix-agent httpd rh-php72-php-fpm
systemctl enable zabbix-server zabbix-agent httpd rh-php72-php-fpm

14.登录密码

登录账号为 Admin 密码为123123

zabbix客户端 安装

准备环境
1.联网 
2.同步时间
yum install ntpdate -y
ntpdate -u ntp.aliyun.com
3.关闭防火墙
  1. 设置yum源

    直接从server scp过去

  2. 安装 agent2

    yum -y install agent2

  3. 修改配置文件

    vi /etc/zabbix/zabbix_agent2.conf
    
    PidFile=/var/run/zabbix/zabbix_agent2.pid
    LogFile=/var/log/zabbix/zabbix_agent2.log
    LogFileSize=0
    Server=10.0.1.50 #server端 IP地址
    ServerActive=10.0.1.50 #server端 IP地址
    Hostname=zbz-agent01 #本机的主机名
    Include=/etc/zabbix/zabbix_agent2.d/*.conf
    ControlSocket=/tmp/agent.sock
    

4.启动并添加开机启动

systemctl restart zabbix-agent2
systemctl enable zabbix-agent2

测试连通性

yum -y install zabbix-get

命令
zabbix_get -s '10.0.1.51'-p 10050 -k "system.hostname"
# zabbix_get 执行命令
  -s agent端 IP地址
  -p 指定agent端口号
  -k zabbix 监控项
  "system.hostname" 监控项 **获取主机名**
上一篇:zabbix4.4监控案例之Oracle11G监控1


下一篇:zabbix监控nginx活动连接