摘自:https://www.cnblogs.com/congyiwei/p/12392057.html
1
|
#cmd /usr/local |
今天讲一下如何监控服务器中的mysql数据库的性能
一、数据库操作
1.mysql启动
1
2
3
|
#service mysqld start #启动数据库 #service mysqld stop #关闭数据库 #service mysqld restart #重启数据库 |
2、进入 mysql
1
|
mysql -u root -p |
3、新增监控 mysql 账号
1
2
|
#use mysql #GRANT ALL PRIVILEGES ON *.* TO '帐号' @ 'localhost' identified by '密码' ;<br>#flush privileges; #刷新 |
二、Prometheus 搭建
这里会给大家提供一个干净的普罗米修斯数据库的压缩包,大家解压就好
将压缩包放到服务器中
#cmd /usr/local
解压
1
|
#tar -zxvf prometheus-xxxxx |
现在修改一下普罗米修斯的配置文件,在他的安装目录中有一个prometheus.yml文件,添加
- job_name: 'linux' static_configs: - targets: ['localhost:9100']
- job_name: 'mysql'
static_configs:
- targets: ['localhost:9104']
这里大家注意一个地方,要严格按照普罗米修斯的格式,不要随意添加空格和缩进,不然会出错
增加这一步的意义是给普罗米修斯开放两个端口,用于Grafana监控
1
|
设置文件权限:#chmod 777 prometheus.yml |
从配置文件中启动
1
|
#./prometheus --config.file=prometheus.yml & |
设置linux系统端口
firewall-cmd --list-ports ##列出开放的端口 firewall-cmd --add-port=9090/tcp --permanent ##永久添加 9090 端口 firewall-cmd --add-port=9100/tcp --permanent ##永久添加 9100 端口 firewall-cmd --add-port=9104/tcp --permanent ##永久添加 9104 端口 firewall-cmd --list-ports ##列出开放的端口 systemctl stop firewalld ##关闭防火墙 systemctl start firewalld ##开启防火墙 systemctl status firewalld ##查看防火墙状态 systemctl restart firewalld ##重启防火墙 systemctl disable firewalld ##开机关闭防火墙,即永久关闭
windows 访问:http://192.168.xx.xx:9090 statue-targets
查看端口状态为up为成功
三、mysqld_exporter 搭建
这里也会提供一个压缩包给大家
1、上传 mysqld_exporter 至 local 下
2、解压 tar -zxvf mysqld_exporter-xxxxxx
3、在/usr/local/mysql_exporter 下创建一个.my.cnf 配置文件,写上创建的用户名和密码
[client] user=xxxx password=xxxx
4、启动服务
在/usr/local/mysql_exporter 下启动./mysqld_exporter --config.my-cnf=my.cnf
5、安装lsof
1
|
#yum install lsof |
6、查看 9104 端口占用情况
lsof -i:9104
7、
1
|
关闭进程 #kill - 9 进程号 |
8、重启 Prometheus
四、Node_exporter 监控 linux
这里会给大家提供一个压缩包
1、上传至/usr/local/
2、解压 tar -zxvf node_exporter-xxxxx
3、在/usr/local/node_exporter 目录下,启动
./node_exporter &
4、通过浏览器访问 http://服务器 ip:9100/metrics 可以看到监控的数据
此时查看任务项均处于UP状态
这样我们的监控平台就搭建起来了,至于Gafana如何与普罗米修斯数据库连接不做解释,需要的请看上几篇文章
附linux效果图
最后给大家附上本文所需压缩包,以及Grafana基于普罗米修斯数据库的监控模板
链接:https://pan.baidu.com/s/1eDjFx0gUqltz3jLD63ymMQ
提取码:lnh7
链接:https://pan.baidu.com/s/1YI0hmB0Bd1RLxgmSiJX0Hw
提取码:9psm
分类: 性能测试