mysql巡检语句

一.获取基本配置信息

 -- 是否区分表名大小写
 SHOW VARIABLES LIKE 'lower_case_table_names' ;

 -- MYSQL 服务端端口
 show variables like 'port' ;

 -- MYSQL socket文件位置
 show variables like 'socket' ;

 -- 是否跳过域名解析
 show variables like '%skip_name_resolve%' ;

 -- 数据库字符集
 show variables like '%character_set_server%' ;

 -- 服务器默认的校对规则
 show variables like 'collation_server';

 -- 交互式连接超时时间(秒)
 show variables like 'interactive_timeout' ;

 -- 非交互式超时时间(秒)
 show variables like 'wait_timeout' ;

 -- 事务隔离级别
 show variables like 'tx_isolation' ;

 -- 数据文件储存位置
 show variables like 'datadir' ;

 -- 允许最大数据包大小
 show variables like 'max_allowed_packet'  ;

 -- 每个线程栈大小
 show variables like 'thread_stack'  ;

 -- 线程缓存大小
 show variables like 'thread_cache_size'  ;

 -- 可以打开的表数量
 show variables like 'table_open_cache'  ;

 -- 内存临时表的最大大小
 show variables like 'tmp_table_size'  ;

 -- 内存中HEAP表的最大大小
 show variables like 'max_heap_table_size'  ;

 -- MYSQL主进程文件的位置
 show variables like 'pid_file'  ;

 -- 错误日志文件位置
 show variables like 'log_error'  ;

 -- 慢查询日志文件位置
 show variables like 'slow_query_log_file';

 -- 慢查询时间戳值
  show variables like 'long_query_time'  ;

二.获取连接数配置信息


 -- 最大连接数
 show variables like 'max_connections';

 -- 服务器启动以来已使用的最大连接数
 show variables like 'max_used_connections';

 -- 达到最大连接数的时间点
 show variables like 'Max_used_connections_time';

 -- 连接失败次数上限
 show variables like 'max_connect_errors';

 -- 通过MYSQL X Protocol 已接收的连接数
 show variables like 'Mysqlx_connections_accepted';

 -- 通过MYSQL X Protocol 已关闭的连接数
  show variables like 'Mysqlx_connections_closed';

三.获取Binlog配置信息


 -- Binlog文件列表
 SHOW BINARY LOGS;

 -- 是否启动Binlog
 show variables like 'log_bin';

 -- Binlog同步频率
 show variables like 'sync_binlog';

 -- Binlog格式
 show variables like 'binlog_format';

 -- 文件格式
 show variables like 'log_bin';

 -- Binlog索引文件位置
 show variables like 'log_bin_index';

 -- 单个Binlog最大大小
 show variables like 'max_binlog_size' ;

 -- Binlog基本名字
 show variables like 'log_bin_basename' ;

 -- Binlog文件过期时间
 show variables like 'expire_logs_days' ;

 -- MYSQL 服务器的唯一ID
 show variables like 'server_id' ;

四 获取 GTID 配置信息


 -- 是否开启GTID模式
 show variables like 'gtid_mode' ;

 -- 是否强制GTID一致性
 show variables like 'enforce_gtid_consistency' ;

 -- 查询GTID执行的详细情况
 select * from mysql.gtid_executed;

 -- 是否开启级联复制
 show variables like 'log_slave_updates' ;

五.InnoDB 配置信息

 -- InnoDB 版本
 show variables like 'innodb_version' ;

 -- 是否为每个InnoDB表创建单独的文件
 show variables like 'innodb_file_per_table' ;

 -- InnoDB缓存池大小
 show variables like 'innodb_buffer_pool_size' ;

 -- InnoDB 日志文件大小
 show variables like 'innodb_log_file_size' ;

 -- InnoDB可以有多少线程同时运行
 show variables like 'innodb_thread_concurrency' ;

 -- 缓冲池中脏页的最大百分比
 show variables like 'innodb_max_dirty_pages_pct' ;

 -- InnoDB的最大写入IO能力
 show variables like 'innodb_io_capacity' ;

 -- 日志缓冲池大小
 show variables like 'innodb_log_buffer_size' ;

 -- 事务提交时刷新日志的频率
 show variables like 'innodb_flush_log_at_trx_commit' ;

 -- InnoDB IO容量
 show variables like 'innodb_io_capacity' ;

 -- 缓冲池示例数
 show variables like 'innodb_buffer_pool_instances' ;

六. 监控指标


 -- 全局状态信息
 show global status ;

 -- 当前所有线程的信息
 show processlist ;

 -- 当前打开的连接数
 show status like 'Threads_connected' ;

 -- 当前线程缓存中有多少空闲线程
 show status like 'Threads_cached' ;

 -- 从最近一次服务启动,已创建线程的数量
 show status like 'Threads_created' ;

 -- 当前激活的(非睡眠状态)线程数
 show status like 'Threads_running' ;

 -- 慢查询次数
 show status like 'slow_queries' ;

 -- InnoDB读取的行数
 show status like 'innodb_rows_read' ;

 -- InnoDB插入的行数
 show status like 'innodb_rows_inserted' ;

 -- InnoDB更新的行数
 show status like 'innodb_rows_updated' ;

 -- InnoDB删除的行数
 show status like 'innodb_rows_deleted';

叨叨~
查看数据库中运行的进程及锁表数据查看及终止方式;

# 查询数据库新城连接数
SHOW STATUS LIKE 'Threads_connected';


 -- SET GLOBAL max_connections = 200; 动态调节连接数  or /etc/my.cnf   max_connections=1000


-- 查看运行的进程
 SHOW PROCESSLIST;


  -- 查看事务
  select * from INFORMATION_SCHEMA.INNODB_TRX ;
   
  -- 查看锁
  select * from INFORMATION_SCHEMA.INNODB_LOCKS ;

  -- 查看锁等待
  select * from information_schema.INNODB_LOCK_WAITS ;

 -- 中断阻塞进程

kill -9 pid



 -- Innodb_buffer_pool_read_requests 表示从缓冲池中读取的请求数量
 show global status like 'Innodb_buffer_pool_read_requests';

 show global status like 'Innodb_buffer_pool_reads' ;
 
 show global status like 'Innodb_buffer_pool_read_requests'
  -- 使用率:Innodb_buffer_pool_pages_data/Innodb_buffer_pool_pages_total*100%
  -- (1481028832509 - 25927399)/1481028832509

 SHOW VARIABLES LIKE 'innodb_buffer_pool_size';
 -- 在线设置大小 set global innodb_buffer_pool_size = 21474836480
 show global status like '%slow%';

 -- set global innodb_buffer_pool_size = 21474836480 ;

 SELECT CONCAT(ROUND((@@innodb_buffer_pool_size / (1024*1024*1024)), 2), 'G') AS innodb_buffer_pool_size_G;

 --
 select @@innodb_buffer_pool_size as innodb_buffer_pool_size ;

 -- 在线修改 SET GLOBAL innodb_buffer_pool_size = 17179869184  #16G 配置文件修改 防止重启后恢复设置前  https://calc.itzmx.com/
 -- https://www.jianshu.com/p/99fd77f182d0
 -- [mysqld]
 -- innodb_buffer_pool_size = 17179869184  #设置2G
 -- innodb_buffer_pool_size = 16G  #设置16G
 -- innodb_buffer_pool_size = 16G  #设置16G
 -- 查看慢sql输出路径及 是否开启
 show variables like '%slow_query%' ;

 show global variables ;
 -- 查看输出路径
 show variables like '%secure_file_priv' ;

 select sysdate() ;

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,245评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,749评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,960评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,575评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,668评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,670评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,664评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,422评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,864评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,178评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,340评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,015评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,646评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,265评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,494评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,261评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,206评论 2 352

推荐阅读更多精彩内容