MySQL数据库维护中监控所用到的常用命令

时间:2024-01-28 03:23:24 

status = show status like ‘%%' [例:show status like 'Com_select']
variables = show variables like ‘%%' [例:show variables like 'query_cache_size']

1、MySQL查询次数(status)
Com_select;Com_update;Com_insert;Com_delete;Com_change_db

2、查询缓存空间大小:query_cache_size(variables)
查询缓存最大查询数据集大小:query_cache_limit(variables);
缓存中的查询个数:Qcache_inserts(status);
查询缓存命中率:(Qcache_hits/(Qcache_hits+Qcache_inserts))*100% (status)

3、索引缓存命中率
索引缓存空间大小:key_buffer_size (variables)
索引缓存命中率:(Key_reads/Key_read_requests)*100% (status)

4、并发连接数
最大充许连接数:max_connections(variables)
实际最大连接数:max_used_connections(status)
当前连接数:Threads_connected(status)
活跃连接数:Threads_running(status)
缓存连接数:Threads_cache(status)

5、流量统计(status)
Bytes_received ,Bytes_sent(status)

6、连接次数
每秒连接次数:Connections(status)
每秒实际创建连接次数:Threads_created(status)

7、表锁定统计
立即释放的表锁数:Table_locks_immediate(status)
需要等待的表锁数:Table_locks_waited(status)

标签:MySQL,维护,监控,常用命令
0
投稿

猜你喜欢

  • Windows下Anaconda下载安装与配置教程分享

    2023-09-29 22:37:11
  • 浏览器 cookie 限制

    2008-05-23 13:09:00
  • ASP开发的WAP格式简易邮件系统实例

    2008-06-10 17:00:00
  • Python字典的基础操作

    2023-02-27 06:25:18
  • 从浅入深带你掌握Golang数据结构map

    2023-06-21 16:42:43
  • Python爬虫使用脚本登录Github并查看信息

    2022-05-02 13:09:28
  • 利用Pyhton中的requests包进行网页访问测试的方法

    2021-09-11 05:12:48
  • 详解MySQL如何有效的存储IP地址及字符串IP和数值之间如何转换

    2024-01-28 11:10:41
  • python实现定时发送qq消息

    2021-08-17 00:10:34
  • Python与C语言分别完成排序流程

    2023-04-19 08:26:24
  • div、section、article 的区别

    2011-02-26 15:39:00
  • PHP和JavaScrip分别获取关联数组的键值示例代码

    2023-06-16 05:30:51
  • Python 操作 ElasticSearch的完整代码

    2021-07-10 17:26:41
  • python win32 简单操作方法

    2022-05-23 01:47:42
  • Python中函数参数匹配模型详解

    2022-01-01 20:39:59
  • 树型结构在ASP中的简单解决

    2007-10-07 12:52:00
  • go语言 bool类型的使用操作

    2024-04-26 17:35:03
  • 如何实现文件上传并自动归类功能?

    2010-05-24 18:37:00
  • Python用内置模块来构建REST服务与RPC服务实战

    2023-05-09 19:32:16
  • Python使用future处理并发问题方案详解

    2022-12-10 18:16:53
  • asp之家 网络编程 m.aspxhome.com