厉飞雨
阅读(83)
评论(0)
赞(4)
mysql information_schema.TABLES表中的table_rows 字段值与count(\*) 值不同
数据库的数据量怎么统计 (知乎): [连接](https://zhuanlan.zhihu.com/p/607063072)
[mysql获取数据库表数量和数据库表行数以及表数据量大小 - 寻梦99 - 博客园 (cnblogs.com)](http...
厉飞雨
阅读(64)
评论(0)
赞(5)
mysql 8 yum 方式安装
<https://zhuanlan.zhihu.com/p/623778183?utm_id=0>
1 配置MySQL软件源
wget https://dev.mysql.com/get/mysql80-community-release-el7-9.noarch.rpm
rpm -ivh my...
厉飞雨
阅读(49)
评论(0)
赞(5)
altermanager 对mysql 告警
配置 prometheus
vim prometheus.yml
# Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets: ['...
厉飞雨
阅读(62)
评论(0)
赞(6)
linux 自动重启服务 shell
[linux下监视进程 崩溃挂掉后自动重启的shell脚本 - Python技术站 (pythonjishu.com)](https://pythonjishu.com/xfrmxvknruflotq/)
新建 日志存放目录:
mkdir /mnt/data/logs/monitor -p
脚本路径:
/mnt...
厉飞雨
阅读(55)
评论(0)
赞(5)
****prometheus监控MySQL环境****
---------------------------
思路就是 mysqld_exporter 登录 远程mysql 然后 采集数据, 传给 promtheus, 然后 在通过 grafana展示。
1- 安装 mysql:
mysql 8 yum 方式安装 : [连接](https://51tbox.com/)
...
厉飞雨
阅读(72)
评论(0)
赞(3)
k8s 安装 mysql: 8.0.26
mysql: 8.0.26 安装方式
1- 配置 字典
配置-》 配置字典
mysql8-conf
![](http://static.51tbox.com/static/2024-08-29/col/178fb1580a85c77663b1e22e2074c4f7/62204253d91f44ceaaaaaf7c73109c...
厉飞雨
阅读(55)
评论(0)
赞(4)
连接
navict 工具好用, datagrip 不好用。
![](http://static.51tbox.com/static/2024-08-29/col/ea918397887c3e016d440b96dd4d2f8b/a831130a296347bdb1b514cfbc113a5a.png.jpg)
厉飞雨
阅读(71)
评论(0)
赞(5)
Confluence 不支持数据库排序规则 "utf8mb4_general_ci"。 您需要使用 "utf8_bin, utf8mb4_bin"。
**排序规则错误**
![](http://static.51tbox.com/static/2024-08-29/col/6cbb9acb0a8df73c4fa9152ac7e345a...
厉飞雨
阅读(73)
评论(0)
赞(7)
Windows安装 MySQL5.7(超详细)
[Windows安装 MySQL5.7(超详细)_windows安装mysql5.7-CSDN博客](https://blog.csdn.net/m0_51510236/article/details/129190003)
厉飞雨
阅读(52)
评论(0)
赞(5)
查看
默认情况下slow_query_log的值为OFF,表示慢查询日志是禁用的
MySQL的慢查询,全名是慢查询日志,是MySQL提供的一种日志记录,用来记录在MySQL中响应时间超过阀值的语句。
具体环境中,运行时间超过long_query_time值的SQL语句,则会被记录到慢查询日志中。
long_query_time的默认值为10,意思...