码迷,mamicode.com
首页 > 数据库 > 详细

MySQL查看运行时间

时间:2015-08-25 14:20:04      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:mysql

1、查看MySQL运行多长时间

mysql> SHOW GLOBAL STATUS LIKE ‘UPTIME‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Uptime        | 12823 |
+---------------+-------+
1 row in set (0.00 sec)

2、查看MySQL连接超时

mysql> SHOW GLOBAL VARIABLES LIKE ‘%TIMEOUT‘;
+-----------------------------+----------+
| Variable_name               | Value    |
+-----------------------------+----------+
| connect_timeout             | 10       |
| delayed_insert_timeout      | 300      |
| innodb_flush_log_at_timeout | 1        |
| innodb_lock_wait_timeout    | 50       |
| innodb_rollback_on_timeout  | OFF      |
| interactive_timeout         | 28800    |
| lock_wait_timeout           | 31536000 |
| net_read_timeout            | 30       |
| net_write_timeout           | 60       |
| rpl_stop_slave_timeout      | 31536000 |
| slave_net_timeout           | 3600     |
| wait_timeout                | 28800    |
+-----------------------------+----------+
12 rows in set (0.00 sec)

3、查看mysql请求链接进程被主动杀死 

mysql> SHOW GLOBAL STATUS LIKE ‘COM_KILL‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_kill      | 0     |
+---------------+-------+
1 row in set (0.00 sec)


4、查看MySQL通信信息包最大值

mysql> SHOW GLOBAL VARIABLES LIKE ‘MAX_ALLOWED_PACKET‘;
+--------------------+---------+
| Variable_name      | Value   |
+--------------------+---------+
| max_allowed_packet | 4194304 |
+--------------------+---------+
1 row in set (0.00 sec)


版权声明:本文为博主原创文章,未经博主允许不得转载。

MySQL查看运行时间

标签:mysql

原文地址:http://blog.csdn.net/you23hai45/article/details/47975477

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!