Mysql服务器信息

https://blog.csdn.net/hanyetuya/article/details/51423649

1、MySQL服务器配置信息

    show variables;

2、MySQL服务器运行的各种状态值

    show global status;

3、慢查询

    show variables like '%slow%';-- 设置的慢查询
    show global status like '%slow%';-- 实际统计的慢查询

4、最大连接数

    show variables like 'max_connections';-- 设置的最大连接数
    show global status like 'max_used_connections';-- 实际使用的最大连接数

posted on 2020-09-10 15:04  anpeiyong  阅读(113)  评论(0编辑  收藏  举报

导航