上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页
摘要: 将fio的包上传到服务器上,默认我已经放在了tidb的家目录上,/home/tidb/ fio工具使用方法: [root@tidb01 ~]# unzip fio_test.zip [root@tidb01 ~]# cd fio_test/ [root@tidb01 ~/fio_test]# chm 阅读全文
posted @ 2022-08-03 19:04 捧花大王 阅读(86) 评论(0) 推荐(0)
摘要: 假如有下面这样一段文本内容: $ grep Lock_time: slow.log | head # Query_time: 1.097620 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Query_time: 0.000111 Lock_ 阅读全文
posted @ 2022-08-03 19:00 捧花大王 阅读(195) 评论(0) 推荐(0)
摘要: [root@mysql-host1 ~]# vim /usr/local/script/his.sh #!/bin/bash #history export HISTTIMEFORMAT="[%Y.%m.%d %H:%M:%S] " export HISTFILESIZE=10000000 expo 阅读全文
posted @ 2022-08-03 01:50 捧花大王 阅读(74) 评论(0) 推荐(0)
摘要: #!/bin/bash DIR="$( cd "$( dirname "$0" )" && pwd )" cd ${DIR} #配置Archery数据库的连接地址 archery_db_host="10.0.0.11" archery_db_port=3306 archery_db_user="zh 阅读全文
posted @ 2022-08-03 01:47 捧花大王 阅读(68) 评论(0) 推荐(0)
摘要: #!/bin/bash for i in `ls -larth --time-style=long-iso mysql-bin.* |grep 2021-11-19 | awk '{print $8}'`; do scp $i 10.0.0.12:/backup/mysql3306/binlog/; 阅读全文
posted @ 2022-08-03 01:45 捧花大王 阅读(23) 评论(0) 推荐(0)
摘要: -- 每天的慢SQL数量 select event_date, count(*) num from system.query_log ql where ql.query_duration_ms > 1000 and event_date >= '2022-07-01' and event_date 阅读全文
posted @ 2022-08-02 11:53 捧花大王 阅读(188) 评论(0) 推荐(0)
摘要: show processlist;有个连接线程一直kill不掉。 显示killed状态的,这个状态是在等待回收线程回收,这个是内核机制触发的,这个会有MySQL内核控制回收的,不能手工干扰。 这个会话kill后不会占用您的实例资源了。 这个已经killed掉的会话,目前已经没有在执行了,是等待mys 阅读全文
posted @ 2022-07-26 18:39 捧花大王 阅读(980) 评论(0) 推荐(0)
摘要: -- 俄罗斯方块 [root@mysql-host1 ~]# cat eluos.sh #!/bin/bash APP_NAME="${0##*[\\/]}" APP_VERSION="1.0" #颜色定义 iSumColor=7 #颜色总数 cRed=1 #红色 cGreen=2 #绿色 cYel 阅读全文
posted @ 2022-07-26 14:36 捧花大王 阅读(65) 评论(0) 推荐(0)
摘要: [root@mysql-host1 ~]# pidof mysqld 100011 59928 10845 9068 [root@mysql-host1 ~]# pgrep mysqld 9068 10845 59928 100011 [root@mysql-host1 ~]# pgrep -fl 阅读全文
posted @ 2022-07-26 14:34 捧花大王 阅读(66) 评论(0) 推荐(0)
摘要: -- 下载ftp包 wget -c http://www.rpmfind.net/linux/centos/7.6.1810/os/x86_64/Packages/vsftpd-3.0.2-25.el7.x86_64.rpm rpm -ivh vsftpd-3.0.2-25.el7.x86_64.r 阅读全文
posted @ 2022-07-25 18:54 捧花大王 阅读(34) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页