Zabbix 3.0 for percona-server TokuDB

Zabbix 3.0 for percona-server TokuDB

安装perconna源
[[email protected] ~]# yum install http://www.percona.com/downloads/percona-release/redhat/0.1-6/percona-release-0.1-6.noarch.rpm

安装依赖
[[email protected] ~]# yum install epel-release -y
[[email protected] ~]# yum install jemalloc -y

+++++++++++++++++++++++++++++++++++++++++++++++++
TokuDB storage engine requires libjemalloc library 3.3.0 or greater. If the version in the distribution repository is lower than that you can use one from Percona Software Repositories or download it from somewhere else.

If the libjemalloc wasn’t installed and enabled before it will be automatically installed when installing the TokuDB storage engine package by using the apt` or yum package manager, but Percona Server instance should be restarted for libjemalloc to be loaded. This way libjemalloc will be loaded with LD_PRELOAD. You can also enable libjemalloc by specifying malloc-lib variable in the [mysqld_safe] section of the my.cnf file:

[mysqld_safe]
malloc-lib= /path/to/jemalloc
+++++++++++++++++++++++++++++++++++++++++++++++++

关闭大页内存
[[email protected] ~]# echo never > /sys/kernel/mm/transparent_hugepage/enabled
[[email protected] ~]# echo never > /sys/kernel/mm/transparent_hugepage/defrag

+++++++++++++++++++++++++++++++++++++++++++++++++
TokuDB won’t be able to start if the transparent huge pages are enabled. Transparent huge pages is feature available in the newer kernel versions. You can check if the Transparent huge pages are enabled with:
$ cat /sys/kernel/mm/transparent_hugepage/enabled
 [always] madvise never
If transparent huge pages are enabled and you try to start the TokuDB engine you’ll get the following message in you error.log:
Transparent huge pages are enabled, according to /sys/kernel/mm/redhat_transparent_hugepage/enabled
Transparent huge pages are enabled, according to /sys/kernel/mm/transparent_hugepage/enabled
You can disable transparent huge pages permanently by passing transparent_hugepage=never to the kernel in your bootloader (NOTE: For this change to take an effect you’ll need to reboot your server).

You can disable the transparent huge pages by running the following command as root (NOTE: Setting this will last only until the server is rebooted):

echo never > /sys/kernel/mm/transparent_hugepage/enabled
echo never > /sys/kernel/mm/transparent_hugepage/defrag
+++++++++++++++++++++++++++++++++++++++++++++++++

安装percona数据库及tokudb插件
[[email protected] ~]# yum install Percona-Server-tokudb-57.x86_64

启动mysql
[[email protected] ~]# systemctl start mysqld

登录并更改密码和过期策略
登录:
[[email protected] ~]# mysql -u root -p
,c!)fa/Cd9kD

更改密码及过期策略:
SET PASSWORD = PASSWORD(‘Qwe_1234‘);
ALTER USER ‘root‘@‘localhost‘ PASSWORD EXPIRE NEVER;
flush privileges;

配置root用户远程登录(只是为了测试,不代表生产操作)
grant all privileges on *.* to [email protected]"%" identified by "Qwe_1234";

测试本地登录与远程登录(我数据库IP为10.0.0.12)
[[email protected] ~]# mysql -uroot -pQwe_1234
[[email protected] ~]# mysql -uroot -pQwe_1234 -h 10.0.0.12 -P3306

加载插件
[[email protected] ~]# ps_tokudb_admin --enable -uroot -pPassw0rd

INSTALL PLUGIN tokudb SONAME ‘ha_tokudb.so‘;
INSTALL PLUGIN tokudb_file_map SONAME ‘ha_tokudb.so‘;
INSTALL PLUGIN tokudb_fractal_tree_info SONAME ‘ha_tokudb.so‘;
INSTALL PLUGIN tokudb_fractal_tree_block_map SONAME ‘ha_tokudb.so‘;
INSTALL PLUGIN tokudb_trx SONAME ‘ha_tokudb.so‘;
INSTALL PLUGIN tokudb_locks SONAME ‘ha_tokudb.so‘;
INSTALL PLUGIN tokudb_lock_waits SONAME ‘ha_tokudb.so‘;
INSTALL PLUGIN tokudb_background_job_status SONAME ‘ha_tokudb.so‘;

show engines;
show plungins;
SELECT @@tokudb_version;

添加zabbix用户
grant all on zabbix.* to [email protected]‘localhost‘ identified by ‘Zabbix_pass123‘;

创建数据库:
create database zabbix charset utf8;

zabbix安装
[[email protected] ~]# vim /etc/yum.repos.d/zabbix.repo
[[email protected] ~]# cat /etc/yum.repos.d/zabbix.repo
[zabbix]
name=Zabbix Official Repository - $basearch
baseurl=https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/3.0/rhel/7/$basearch/
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX

[zabbix-non-supported]
name=Zabbix Official Repository non-supported - $basearch
baseurl=https://mirrors.tuna.tsinghua.edu.cn/zabbix/non-supported/rhel/7/$basearch/
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
gpgcheck=0
[[email protected] ~]# 

[[email protected] ~]# yum install -y zabbix-server-mysql zabbix-web-mysql zabbix-agent

修改配置文件
[[email protected] zabbix]# vim zabbix_server.conf
DBPassword=Zabbix_pass123
vim /etc/httpd/conf.d/zabbix.conf
php_value date.timezone Asia/Shanghai

导入zabbix数据库
[[email protected] conf.d]# rpm -ql zabbix-server-mysql
/etc/logrotate.d/zabbix-server
/etc/zabbix/zabbix_server.conf
/usr/lib/systemd/system/zabbix-server.service
/usr/lib/tmpfiles.d/zabbix-server.conf
/usr/lib/zabbix/alertscripts
/usr/lib/zabbix/externalscripts
/usr/sbin/zabbix_server_mysql
/usr/share/doc/zabbix-server-mysql-3.0.21
/usr/share/doc/zabbix-server-mysql-3.0.21/AUTHORS
/usr/share/doc/zabbix-server-mysql-3.0.21/COPYING
/usr/share/doc/zabbix-server-mysql-3.0.21/ChangeLog
/usr/share/doc/zabbix-server-mysql-3.0.21/NEWS
/usr/share/doc/zabbix-server-mysql-3.0.21/README
/usr/share/doc/zabbix-server-mysql-3.0.21/create.sql.gz
/usr/share/man/man8/zabbix_server.8.gz
/var/log/zabbix
/var/run/zabbix
[[email protected] conf.d]#
[[email protected] conf.d]# cd /usr/share/doc/zabbix-server-mysql-3.0.21/
[[email protected] zabbix-server-mysql-3.0.21]# gunzip create.sql.gz
注意:如果使用tokudb,需要将sql脚本中的InnoDB替换为tokudb
[[email protected] ~]# mysql -uroot -pQwe_1234

重启zabbix相关服务
[[email protected] ~]# systemctl restart zabbix-server
[[email protected] ~]# systemctl restart zabbix-agent
[[email protected] ~]# systemctl restart httpd

web登录配置zabbix(略)

安装percona监控模板rpm包

注意:修改采集脚本用户密码
/var/lib/zabbix/percona/scripts
vim get_mysql_stats_wrapper.sh
RES=`HOME=~zabbix mysql -u root -pQwe_1234
vim ss_get_mysql_stats.php
#
$mysql_user = ‘root‘;
$mysql_pass = ‘Qwe_1234‘;

命令行测试监控项
# yum install zabbix-get.x86_64 -y
# systemctl restart zabbix-agent.service
# cat /etc/zabbix/zabbix_agentd.d/userparameter_percona_mysql.conf
# zabbix_get -s 127.0.0.1 -k MySQL.Open-files

原文地址:https://www.cnblogs.com/zhouwanchun/p/11090546.html

时间: 2024-10-23 06:46:56

Zabbix 3.0 for percona-server TokuDB的相关文章

Percona Server 的安装及tokudb引擎的安装笔记

Percona Server 的安装及tokudb引擎的安装笔记 2017年7月7日 安装percona server: yum localinstall Percona-Server-client-57-5.7.18-15.1.el6.x86_64.rpm  Percona-Server-shared-57-5.7.18-15.1.el6.x86_64.rpm Percona-Server-server-57-5.7.18-15.1.el6.x86_64.rpm  Percona-Server

MySQL社区版升级到Percona Server

出于磁盘空间的考虑,在调研以后把磁盘空间紧张的库的引擎改为tokudb,(在改为tokudb引擎之前是innodb引擎,已经压缩过,但空间还是紧张)关于tokudb的优势各位自行查阅相关资料.要启用tokudb引擎就需要使用percona server.tokudb引擎被percona server收购.线上mysql的版本是社区版5.5.24,于是升级过程就是 5.5.24 -> 5.6.25 -> 5.7.21 -> percona-5.7.22.在升级到percona 5.7.22

深入浅出Zabbix 3.0 -- 第二章 Zabbix Web操作与定义

第二章  Zabbix Web操作与定义 本章介绍Zabbix 中一些基本概念的定义和web前端页面的操作,包括Zabbix中使用的一些术语的定义,Web页面中用户管理.主机和主机组的管理,以及监控项.模板.触发器.告警的管理和操作,还有Graphs.Screens.Maps及Reports等.通过本章的学习掌握一些基本概念并能够通过Web页面的操作完成对Zabbix的管理. 2.1 定义 hosts(主机) Zabbix中需要监控的服务器.交换机及其他设备我们都统一称作host,这些设备与Za

CentOS 7 安装 Zabbix 3.0

CentOS7搭建Zabbix 一.安装数据库: 1.  安装数据库:sudo  yum  grouinstall mariadb mariadb-server –y 2.  启动数据库:sudo systemctl  start mariadb 3.  设置开机启动:sudo systemctl enable mariadb 4.  初始化数据库:sudo mysql_secure_installation            //设置密码为123456 二.安装Zabbix 1.  下载Z

Percona Server 5.6 RPM 快速安装&快速完全卸载

1.先快速安装,然后进行学习,参数文件慢慢再来学习. 安装包下载到/tmp路径下 # tar -xvf Percona-Server-5.6.34-79.1-r1c589f9-el6-x86_64-bundle.tar # ls *.rpm # rpm -ivh Percona-Server-shared-56-5.6.34-rel79.1.el6.x86_64.rpm # rpm -ivh Percona-Server-client-56-5.6.34-rel79.1.el6.x86_64.r

Zabbix 3.0 部署监控 [三]

Zabbix 3.0 部署监控 [三] zabbix 时间:2016年9月22日 笔者QQ:381493251 Abcdocker交流群:454666672 如果遇到什么问题可以进群询问,我们是一个乐于帮助的集体! Dashboard首页信息介绍 Status of Zabbix(Zabbix状态)介绍 Zabbix server is running                           #Zabbix服务器是否运行 Number of hosts (enabled/disabl

CentOS6上编译安装ZABBIX 3.0

0x00  实验环境 系统:CentOS-6.8-x86_64 httpd:2.4.20 mysql:5.6.31 php:5.6.22 IP:10.0.0.4 0x01  编译安装zabbix3.0 1.下载zabbix源码包 [[email protected] src]# cd /usr/local/src/ [[email protected] src]# wget http://downloads.sourceforge.net/project/zabbix/ZABBIX%20Late

Zabbix 3.0 监控MySQL

Mysql监控  zabbix自带了一个监控mysql的模板,但是真正监控mysql的并不是zabbix自带的模板.而是percona公司的一个监控mysql模板  percona官网: www.percona.com Percona组成介绍 1.php脚本    用来数据采集 2.shell脚本  用来调用采集信息 3.zabbix配置文件 4.zabbix模板文件 安装文档:https://www.percona.com/doc/percona-monitoring-plugins/LATE

利用Zabbix ODBC monitoring监控SQL Server

利用Zabbix ODBC monitoring监控SQL Server 1. 创建群组ODBC Templates 2. 创建Template SQL Server和Template MySQL 3. 在Zabbbix上安装unixODBC shell> yum -y install unixODBC unixODBC-devel 4. 在Zabbix上安装对应数据库的unixODBC驱动 unixODBC有一个支持的数据库和驱动列表: http://www.unixodbc.org/driv