时间:2021-07-01 10:21:17 帮助过:3人阅读
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 show status