zoukankan      html  css  js  c++  java
  • 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)


  • 相关阅读:
    Idea快捷键
    Java学习之路--书籍推荐
    泵式等待基元
    uni-app,wex5,APPcan,ApiCloud几款国内webapp开发框架的选型对比
    前端框架2019 云开发
    select2 javascript控件 如何设置指定的值
    Github 索引
    linux
    WPF 中的 Uri 地址的不同写法
    WPF GridSplitter 使用技巧
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13314427.html
Copyright © 2011-2022 走看看