CentOS 7 yum安装zabbix
Posted bigdevilking
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 yum安装zabbix相关的知识,希望对你有一定的参考价值。
1、 配置安装前环境
2、 安装zabbix
3、 设置中文环境
准备搭建环境 :
系统:CentOS7.5
首先关闭SElinux 和防火墙
安装MariaDB数据库
[[email protected] ~]# yum -y install mariadb-server mariadb-devel [[email protected] ~]# systemctl start mariadb [[email protected] ~]# mysql Welcome to the MariaDB monitor. Commands end with ; or g. Your MariaDB connection id is 2 Server version: 5.5.56-MariaDB MariaDB Server Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others. Type ‘help;‘ or ‘h‘ for help. Type ‘c‘ to clear the current input statement. 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 ‘zabbix‘@‘localhost‘ identified by ‘123456‘; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> quit Bye
安装zabbix :
获取并安装zabbix的yum源
[[email protected] ~]# wget http://repo.zabbix.com/zabbix/3.5/rhel/7/x86_64/zabbix-release-3.5-1.el7.noarch.rpm [[email protected] ~]# rpm -i zabbix-release-3.5-1.el7.noarch.rpm [[email protected] ~]# yum makecache [[email protected] ~]# yum -y install zabbix-get zabbix-sender zabbix-server-mysql zabbix-web zabbix-agent
zabbix-agent.:zabbix客户端,用来收集客户端各种参数
zabbix-get:zabbix的一个工具,用来检查是否可以获取服务器信息(一般服务端要安装)
zabbix-sender:用于发送数据给server或者proxy
zabbix-web:zabbix要使用web界面,这个包是用来处理Apache和php,mysql等之间的依赖关系
把create.sql导入到zabbix数据库中
[[email protected] ~]# cd /usr/share/doc/zabbix-server-mysql-4.0.0/ [[email protected] zabbix-server-mysql-4.0.0]# mysql -u zabbix -p zabbix < create.sql Enter password:123456
修改zabbix_server_conf这个配置文件
[[email protected] zabbix-server-mysql-4.0.0]# vim /etc/zabbix/zabbix_server.conf 在# DBPassword=下面添加 DBPassword=123456 在# DBSocket=/tmp/mysql.sock下面添加 DBSocket=/var/lib/mysql/mysql.sock [[email protected] zabbix-server-mysql-4.0.0]# vim /etc/httpd/conf.d/zabbix.conf # 把时区修改为亚洲/上海 php_value date.timezone Asia/Shanghai
开启服务
[[email protected] zabbix-server-mysql-4.0.0]# systemctl start httpd [[email protected] zabbix-server-mysql-4.0.0]# systemctl start zabbix-server [[email protected] zabbix-server-mysql-4.0.0]# systemctl start zabbix-agent
在浏览器安装zabbix
安装地址:
http://ip/zabbix (ip替换为自己ip)
在配置数据库的时候只有postgresql数据库,没有mysql怎么办?
[[email protected] zabbix-server-mysql-4.0.0]# yum -y install php-mysql [[email protected] zabbix-server-mysql-4.0.0]# systemctl restart httpd
刷新页面
登录,用户名密码为Admin/zabbix
修改页面中文显示
修改成中文保存
现在是中文 , 但是有些参数显示不出来 , 乱码了 , 怎么解决呢?
需要修改中文字体 ,防止监控图乱码
在控制面板中找到一个字体 ,例如黑体
Win+R 输入Control
把字体文件上传到/usr/share/zabbix/fonts
[[email protected] zabbix-server-mysql-4.0.0]# cd /usr/share/zabbix/fonts/ [[email protected] fonts]# ls graphfont.ttf [[email protected] fonts]# rz -E # 上传字体文件到当前目录下 rz waiting to receive. [[email protected] fonts]# ls graphfont.ttf SIMHEI.TTF
# 把文件名改为小写 [[email protected] fonts]# mv SIMHEI.TTF simhei.ttf # 修改/usr/share/zabbix/include/defines.inc.php [[email protected] fonts]# sed -i ‘s/graphfont/simhei/g‘ /usr/share/zabbix/include/defines.inc.php
刷新监控页面
已经正常显示中文
以上是关于CentOS 7 yum安装zabbix的主要内容,如果未能解决你的问题,请参考以下文章
How to install Zabbix5.0 LTS version with Yum on the CentOS 7.8 system?