重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本文主要给大家介绍MySQL性能命令解析,希望可以给大家补充和更新些知识,如有其它问题需要了解的可以持续在创新互联行业资讯里面关注我的更新文章的。
成都创新互联公司服务项目包括尼金平网站建设、尼金平网站制作、尼金平网页制作以及尼金平网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,尼金平网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到尼金平省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
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%';
看了以上关于mysql性能命令解析,希望能给大家在实际运用中带来一定的帮助。本文由于篇幅有限,难免会有不足和需要补充的地方,如有需要更加专业的解答,可在官网联系我们的24小时售前售后,随时帮您解答问题的。