Centos 6.5 Zabiix 配置Mysql服务

安装 zabbix-agent 客户端服务
yum -y install http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm

yum -y install zabbix-agent

配置连接zabbix 服务端
vi /etc/zabbix/zabbix_agentd.conf
# line 85: specify Zabbix server

Server=192.168.31.67
# line 126: specify Zabbix server

ServerActive=192.168.31.67
# line 137: change to the own hostname

Hostname=zabbix

启动zabbix-agent服务
service zabbix-agent start

Starting ZABBIX agent:[ OK ]

配置开机启动zabbix-agent
chkconfig zabbix-agent on

方法一
mysql -u root -p
GRANT USAGE ON *.* TO 'zabbix'@'localhost' IDENTIFIED BY 'Report@123';
GRANT USAGE ON *.* TO 'zabbix'@'127.0.0.1' IDENTIFIED BY 'Report@123';
FLUSH PRIVILEGES;

方法二
mysql -uroot -p -e "GRANT USAGE ON *.* TO ‘zabbix‘@‘127.0.0.1‘ IDENTIFIED BY ‘Report@123‘";
mysql -uroot -p -e "GRANT USAGE ON *.* TO ‘zabbix‘@‘localhost‘ IDENTIFIED BY ‘Report@123‘";
mysql -uroot -p -e "flush privileges"


配置.my.cnf
vim /etc/zabbix/.my.cnf
# Zabbix Agent
[mysql]
host=192.168.31.64
user=zabbix
password=Report@123
socket=/var/lib/mysql/mysql.sock
[mysqladmin]
host=192.168.31.64
user=zabbix
password=Report@123
socket=/var/lib/mysql/mysql.sock

====================================================================================================================================================================
添加vim /etc/zabbix/.my.cnf 更改所有的/user/zabbix/为/etc/zabbix/
cd /etc/zabbix/zabbix_agentd.d
# For all the following commands HOME should be set to the directory that has .my.cnf file with password information.

# Flexible parameter to grab global variables. On the frontend side, use keys like mysql.status[Com_insert].
# Key syntax is mysql.status[variable].
UserParameter=mysql.status[*],echo "show global status where Variable_name='$1';" | HOME=/etc/zabbix/ mysql -N | awk '{print $$2}'

# Flexible parameter to determine database or table size. On the frontend side, use keys like mysql.size[zabbix,history,data].
# Key syntax is mysql.size[<database>,<table>,<type>].
# Database may be a database name or "all". Default is "all".
# Table may be a table name or "all". Default is "all".
# Type may be "data", "index", "free" or "both". Both is a sum of data and index. Default is "both".
# Database is mandatory if a table is specified. Type may be specified always.
# Returns value in bytes.
# 'sum' on data_length or index_length alone needed when we are getting this information for whole database instead of a single table
UserParameter=mysql.size[*],echo "select sum($(case "$3" in both|"") echo "data_length+index_length";; data|index) echo "$3_length";; free) echo "data_free";; esac)) from information_schema.tables$([[ "$1" = "all" || ! "$1" ]] || echo " where table_schema='$1'")$([[ "$2" = "all" || ! "$2" ]] || echo "and table_name='$2'");" | HOME=/etc/zabbix/ mysql -N

UserParameter=mysql.ping,HOME=/etc/zabbix/ mysqladmin ping | grep -c alive
UserParameter=mysql.version,mysql -V
====================================================================================================================================================================

vim /etc/zabbix/zabbix_agentd.conf
EnableRemoteCommands=1  开启远程授权
UnsafeUserParameters=1  开启安全

重启zabbix客户端服务
service zabbix-agent restart

重启Mysql服务

servcie  mysqld restart
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

CIAS

你的鼓励就是我的鼓励

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值