mysql show status查看信息命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql show status查看信息命令相关的知识,希望对你有一定的参考价值。


mysql性能命令:


列出所有用户的当前连接:

> show processlist;  (只显示前100行)


> show full processlist; (显示所有连接)



查看所有mysql信息:

> show status;



查看正在使用延迟插入处理器线程的数量:

> show status like ‘%Delayed_insert_threads%‘;


同时使用的连接的最大数量:

> show status like ‘%max_used_connections%‘;



打开表的数量:

> show status like ‘%open_tables%‘;


在队列中等待写入行的数量:

> show status like ‘%not_flushed_delayed_rows%‘;


已经打开表的数量:

> show status like ‘%opened_tables%‘;


发往服务器查询的数量:

> show status like ‘%questions%‘


超过long_query_time时间的查询数量:

> show status like ‘%slow_queries%‘;


当前打开的连接数量:

> show status like ‘%threads_connected%‘;


不在睡眠的线程数量:

> show status like ‘%threads_running%‘;


服务器工作了多少秒:

> show status like ‘%uptime%‘;


查看表级锁争用情况(数值越大说明表级锁争用越严重):

> show status like ‘%table_locks_waited%‘;



当前正在等待锁定的数量:

> show status like ‘%innodb_row_lock_current_waits%‘;





本文出自 “linux” 博客,请务必保留此出处http://yangzhiming.blog.51cto.com/4849999/1931812

以上是关于mysql show status查看信息命令的主要内容,如果未能解决你的问题,请参考以下文章

如何查看mysql版本

查看Mysql版本号 (最简单的是status )

MySQL status命令

MySQL状态变量详解

查看Mysql版本号

Mysql查看版本号的五种方式介绍