centos7安装zabbix-
Posted 开始认识
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7安装zabbix-相关的知识,希望对你有一定的参考价值。
author :headsen chen
date :2018-05-07 16:24:34
安装前准备:
1.1 安装依赖包:
yum -y install wget net-snmp-devel OpenIPMI-devel httpd openssl-devel java lrzsz fping-devel libcurl-devel perl-DBI pcre-devel libxml2 libxml2-devel mysql-devel gcc php php-bcmath php-gd php-xml php-mbstring php-ldap php-mysql.x86_64 php-pear php-xmlrpc net-tools wget vim-enhanced
一、zabbix server3.0在centos 7上安装
1.1 搭建lamp环境
[[email protected] ~]# yum -y install mariadb mariadb-server php php-mysql httpd
centos7默认安装的是php5.4、httpd2.4和maradb5.5
设置开机自启动mysql,并启动mysql,使用如下命令:
[[email protected] ~]# systemctl enable mariadb.service
[[email protected] ~]# systemctl start mariadb.service
初始化mysql数据库,并配置root用户密码。使用如下命令:
[[email protected] ~]# mysql_secure_installation
设置mariadb的密码为abc123
创建zabbix数据库及其用户,使用如下命令:
[[email protected] ~]# mysql -uroot -p123456 -e "create database zabbix default character set utf8 collate utf8_bin;"
[[email protected] ~]# mysql -uroot -p123456 -e "grant all on zabbix.* to ‘zabbix‘@‘%‘ identified by ‘zabbix‘;"
现在来测试刚刚创建的zabbix用户,是否可以连接mysql数据库,如下:
[[email protected] ~]# mysql -uzabbix -pzabbix
MariaDB [(none)]> show databases;
MariaDB [(none)]> quit
启动apache以及开放80端口,如下:
[[email protected] ~]# systemctl start httpd.service
[[email protected] ~]# netstat -ltun
1.2 安装zabbix server3.0
安装zabbix3.0所需要EPEL源和zabbix的yum源,如下:
[[email protected] ~]#rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
[[email protected] ~]# yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-get
进行zabbix的相关配置。
导入zabbix数据库结构,如下:
[[email protected] ~]# cd /usr/share/doc/zabbix-server-mysql-3.0.5/
[[email protected] zabbix-server-mysql-3.0.5]# zcat create.sql.gz | mysql -uroot -pabc123 zabbix
修改zabbix sever的配置文件,DBHost、DBName、DBUser、DBPassword 这四项修改如下:
[[email protected] ~]# vi /etc/zabbix/zabbix_server.conf
LogFile=/var/log/zabbix/zabbix_server.log
LogFileSize=0
PidFile=/var/run/zabbix/zabbix_server.pid
DBHost=localhost ---------------------------->修改这四项
DBName=zabbix ------------------------------>
DBUser=zabbix ------------------------------->
DBPassword=zabbix ---------------------------->
SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
Timeout=4
AlertScriptsPath=/usr/lib/zabbix/alertscripts
ExternalScripts=/usr/lib/zabbix/externalscripts
LogSlowQueries=3000
上述配置文件中,我们只需要关注 几项即可。这几项是配置zabbix server连接mysql数据库的参数。
以上修改完毕后,我们再来修改下zabbix.conf文件。如下:
vi /etc/httpd/conf.d/zabbix.conf
#php_value date.timezone Asia/Chongqing 定义php的时区,改成:
php_value date.timezone Asia/Shanghai
zabbix-server加入开机启动:
[[email protected] ~]# systemctl start zabbix-server.service
[[email protected] ~]# systemctl enable zabbix-server.service
重启apache:
[[email protected] ~]# systemctl restart httpd.service
三、通过web页面来配置zabbix
http://ip/zabbix/
上图中需要填写的是,我们前面创建的zabbix数据库已经用户和密码 , Next step
默认用户名是Admin 密码 zabbix 然后点击sign in
四、安装zabbix agent
4.1 安装zabbix agent
rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
[[email protected] ~]# yum -y install zabbix zabbix-agent
4.2 配置zabbix agent
zabbix agent的配置很简单,只需要修改zabbix agent配置文件中的Server、ServerActive和Hostname这三项即可。
其中Server、ServerActive是zabbix server服务器的IP地址,Hostname是被监控端的IP地址,如下:
[[email protected] ~]# vi /etc/zabbix/zabbix_agentd.conf
PidFile=/var/run/zabbix/zabbix_agentd.pid
LogFile=/var/log/zabbix/zabbix_agentd.log
LogFileSize=0
Server=127.0.0.1
ServerActive=127.0.0.1
Hostname=127.0.0.1
Include=/etc/zabbix/zabbix_agentd.d/
以上配置完毕后,我们在zabbix web端添加该监控机器时,只需要把honst name与该配置文件中的hostname对应即可。如下:
Server=服务器ip地址
ServerActive=服务器ip地址
Hostname=客户端ip地址
Server被动ServerActive主动
到此zabbix agent就已经安装完毕。
启动客户端
[[email protected] ~]# zabbix_agentd -c /etc/zabbix/zabbix_agentd.conf
[[email protected] ~]# systemctl start zabbix-agent
[[email protected] ~]# systemctl restart zabbix-agent
[[email protected] ~]# systemctl enable zabbix-agent
五、zabbix web中文显示与优化
5.1 zabbix web中文显示
默认情况下zabbix web显示的是英文,实际上zabbix是支持中文的,我们可以通过修改web端源文件来开启中文。
修改/usr/share/zabbix/include/locales.inc.php文件,把zh_CN所在行的false改为true即可,如下:
[[email protected] ~]# vim /usr/share/zabbix/include/locales.inc.php +55
最后后点击zabbix web监控网页端右上角人头头像,在弹出的选项卡选择中文语言即可。如下:
5.2 中文显示优化
安装中文支持包
安装方法如下:
[[email protected] ~]# wget https://github.com/echohn/zabbix-zh_CN/archive/master.zip
[[email protected] ~]# unzip master.zip
[[email protected] ~]# rm /usr/share/zabbix/locale/zh_CN/LC_MESSAGES/frontend.mo
[[email protected] ~]# cp zabbix-zh_CN-master/frontend.mo /usr/share/zabbix/locale/zh_CN/LC_MESSAGES/frontend.mo
现在重启下apache和zabbix_server两个服务就可以,如下:
[[email protected] ~]# systemctl restart httpd
[[email protected] ~]# systemctl restart zabbix-server
[[email protected] ~]# mv simkai.ttf /usr/share/zabbix/fonts/
[[email protected] ~]# cd /usr/share/zabbix/fonts/
[[email protected] fonts]# chmod 777 simkai.ttf
[[email protected] fonts]# cp graphfont.ttf graphfont.ttf.bak
[[email protected] fonts]# mv simkai.ttf graphfont.ttf
mv :是否覆盖 "graphfont.ttf" ? y
以上是关于centos7安装zabbix-的主要内容,如果未能解决你的问题,请参考以下文章