Home >Database >Mysql Tutorial >MySQL查看目前运行状况的两种方法_MySQL

MySQL查看目前运行状况的两种方法_MySQL

WBOY
WBOYOriginal
2016-06-01 13:18:441110browse

bitsCN.com 第一种方法:利用mysql命令查看

MySQL 内建直接看 status 就可以看到系统常见讯息, 如下述范例:


1.$ mysql -u root -p
2.mysql> s
“Threads: 2 Questions: 224857636 Slow queries: 229 Opens: 1740 Flush tables: 1 Open tables: 735 Queries per second avg: 137.566
$ mysql -u root -p -e "status" # s = status,


用这个也会列出上述结果.

第二种方法:利用phpmyadmin查看

最简单的方式,在phpMyAdmin直接点击状态查看,详细如下图。

phpMyAdmin查看MySQL运行状况

这查看的是MySQL的一些运行状况数值,这种方式被大多数系统管理员所不齿,因为专业的MySQL服务器很少有能通过phpMyAdmin访问的,后面会介绍其他查看方式,但是phpMyAdmin提供优化建议还是很具有指导性和参考性的。bitsCN.com

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn