Mysql常用命令记录

-- 设置MySQL的连接数
set GLOBAL max_connections=1000;

-- 查询mysql的最大连接数
select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES 
  where VARIABLE_NAME='MAX_CONNECTIONS';

-- 看到所有用户的当前连接
show full processlist;

-- 显示等待连接时间
show global variables like "wait_timeout";

--2、只查看当前连接数(Threads就是连接数.):
./mysqladmin  -uadmin -p -h10.140.1.1 status

-- 解决锁表(在linux下操作)
SELECT concat('KILL ',id,';') FROM information_schema.processlist WHERE user='这里填用户名';
SELECT concat('KILL ',id,';') FROM information_schema.processlist WHERE user='这里填用户名' INTO OUTFILE '/tmp/kill.txt';
source /tmp/kill.txt;

你可能感兴趣的:(Mysql常用命令记录)