1 配置yum源
[root@zabbix-server ~]# vim /etc/yum.repos.d/zabbix.repo
[zabbix] name=zabbix baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/ gpgcheck=0 enabled=1 [zabbix2] name=zabbix frontend baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/frontend/ gpgcheck=0 enabled=1 ~
2 安装zabbix-server,以及相关软件
yum -y install zabbix-server-mysql zabbix-agent
yum install centos-release-scl
yum install zabbix-web-mysql-scl zabbix-apache-conf-scl
3安装数据库,并授权zabbix账号
3.1 安装数据库
yum -y install mariadb mariadb-server systemctl enable mariadb systemctl start mariadb
3.2 授权zabbix账号
[root@zabbix-server ~]# mysql
进入mariadb,敲以下命令
create database zabbix character set utf8 collate utf8_bin;
create user zabbix@localhost identified by ‘Cj@123456’;
grant all privileges on zabbix.* to zabbix@localhost;
flush privileges;
quit
注: 其中密码自定义
4 初始化zabbix,注意检查安装的zabbix-server-mysql的版本
[root@zabbix-server ~]# ls /usr/share/doc/zabbix-server-mysql-5.0.25/ AUTHORS ChangeLog COPYING create.sql.gz double.sql NEWS README
zcat /usr/share/doc/zabbix-server-mysql-5.0.25/create.sql.gz | mysql -uzabbix -p'Cj@123456' zabbix
5 配置zabbix-server的conf文件,和数据库建立联系
vim /etc/zabbix/zabbix_server.conf
将以下四行内容找到并进行修改:
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=Cj@123456
启动zabbix
systemctl enable zabbix-server.service
systemctl start zabbix-server.service
6 在php-fpm.d下的zabbix配置文件中,修改时区
vim /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf
只需要修改这一行,改为上海时区
php_value date.timezone Asia/Shanghai
重新启动这些软件
systemctl restart zabbix-server zabbix-agent httpd rh-php72-php-fpm
systemctl enable zabbix-server zabbix-agent httpd rh-php72-php-fpm
7 输入ip/zabbix 即可登录自己的zaibbix-server的欢迎界面
填写数据库信息,默认用户名: Admin 密码: zabbix
登录成功界面如下:
8 安装zabbix-agent
将zabbix-server中的zabbix.repo 直接scp方式复制过去
yum -y install zabbix-agent
vim /etc/zabbix/zabbix_agentd.conf
以下三个参数需要修改
Server=192.168.123.128
ServerActive=192.168.123.128
Hostname=web1
注: server和serveractive都需要填写zabbix-server的ip,hostname自定义,记得用hostnamectl 来修改hostname的名字
启动zabbix,如果出现10050端口,即安装成功
systemctl start zabbix-agent systemctl enable zabbix-agent
netstat -anpt | grep 10050
完结撒花~~