温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Centos怎么安装部署最新版Zabbix3.4

发布时间:2022-04-13 10:59:01 来源:亿速云 阅读:127 作者:iii 栏目:编程语言

本篇内容介绍了“Centos怎么安装部署最新版Zabbix3.4”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

 一、系统环境

cat /etc/redhat-release

centos linux release 7.3.1611 (core)

关闭防火墙及selinux

systemctl stop firewalld.service
systemctl disable firewalld.service
sed -i 's/selinux=enforcing/selinux=disabled/' /etc/selinux/config
grep selinux=disabled /etc/selinux/config
setenforce 0

二、数据库安装及配置

1、mariadb概述

mariadb数据库管理系统是mysql的一个分支,主要由开源社区在维护,采用gpl授权许可。
开发这个分支的原因是:甲骨文公司收购了mysql后,有将mysql闭源的潜在风险,因此社区采用分支的方式来避开这个风险。

mariadb的目的是完全兼容mysql,包括api和命令行,使之能轻松成为mysql的代替品。

2、安装mariadb

yum install mariadb-server mariadb -y

mariadb数据库的相关命令是:

systemctl start mariadb #启动mariadb
systemctl stop mariadb #停止mariadb
systemctl restart mariadb #重启mariadb
systemctl enable mariadb #设置开机启动

三、zabbix3.4安装及配置

1、zabbix3.4新功能概述

  • remote command support through proxies

  • parallel processing of alerts

  • being notified on problem acknowledgement

  • item value preprocessing

    • new preprocessing options

  • configurable jmx endpoints

  • jmx low-level discovery

  • pcre library for regular expressions

  • url-encoding support in web monitoring

    • automatic url-encoding

    • flexible url-encoding for variables

    • unicode support in domain names

  • support of macros and time suffixes in time periods

  • host macro support in event tags

  • frontend improvements

    • dropping ie9 and ie10 support

    • full cloning of screens and maps

    • unified style for radio buttons and checkboxes

    • applying same permissions to nested host groups

    • increased field sizes

    • miscellaneous

  • daemon improvements

    • ipmi polling

    • configuration parameters

    • more information on agent metric thread crashes

  • item changes/improvements

  • low-level discovery

  • return code check for scripts and commands

zabbixe中文文档

2、zabbix3.4安装

rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm
yum install zabbix-server-mysql zabbix-web-mysql -y

3、创建数据库

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

4、导入数据

复制代码 代码如下:


zcat /usr/share/doc/zabbix-server-mysql-3.4.0/create.sql.gz | mysql -uzabbix -pzabbix zabbix

5、配置数据库用户及密码

grep -n '^'[a-z] /etc/zabbix/zabbix_server.conf
38:logfile=/var/log/zabbix/zabbix_server.log
49:logfilesize=0
72:pidfile=/var/run/zabbix/zabbix_server.pid
99:dbname=zabbix
115:dbuser=zabbix
123:dbpassword=zabbix
314:snmptrapperfile=/var/log/snmptrap/snmptrap.log
432:timeout=4
474:alertscriptspath=/usr/lib/zabbix/alertscripts
484:externalscripts=/usr/lib/zabbix/externalscripts
520:logslowqueries=3000

6、启动zabbix server并设置开机启动

systemctl enable zabbix-server
systemctl start zabbix-server

7、编辑zabbix前端php配置,更改时区

vim /etc/httpd/conf.d/zabbix.conf
php_value date.timezone asia/shanghai

8、selinux配置

setsebool -p httpd_can_connect_zabbix on
setsebool -p httpd_can_network_connect_db on

9、启动httpd并设置开机启动

systemctl start httpd
systemctl enable httpd

四、安装zabbix web

1、浏览器访问,并进行安装http://172.16.8.254/zabbix/

Centos怎么安装部署最新版Zabbix3.4

2、点击next会出现检查状态

Centos怎么安装部署最新版Zabbix3.4

3、检查系统环境设置,必须全部都为ok,才能继续

Centos怎么安装部署最新版Zabbix3.4

4、输入连接到数据库详细信息。zabbix数据库必须已经创建好

Centos怎么安装部署最新版Zabbix3.4

Centos怎么安装部署最新版Zabbix3.4

5、连接zabbix服务细节,如果没有改变可选择默认

Centos怎么安装部署最新版Zabbix3.4

7、完成安装,会将在/etc/zabbix/web/zabbix.conf.php生成配置文件

congratulations! you have successfully installed zabbix frontend.
configuration file "/etc/zabbix/web/zabbix.conf.php" created.

Centos怎么安装部署最新版Zabbix3.4

8、登录最新版zabbix3.4 默认用户admin 默认密码zabbix

Centos怎么安装部署最新版Zabbix3.4

五、zabbxi-agent安装及配置

1、安装zabbxi-agent

yum install zabbix-agent -y

2、配置zabbxi-agent

grep -n '^'[a-z] /etc/zabbix/zabbix_agentd.conf 
13:pidfile=/var/run/zabbix/zabbix_agentd.pid
32:logfile=/var/log/zabbix/zabbix_agentd.log
43:logfilesize=0
97:server=172.16.8.254
138:serveractive=172.16.8.254
149:hostname=zabbix server
267:include=/etc/zabbix/zabbix_agentd.d/*.conf

3、启动zabbxi-agent并设置开机启动

systemctl enable zabbix-agent.service
systemctl restart zabbix-agent.service

“Centos怎么安装部署最新版Zabbix3.4”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI