mysql错误: Lock wait timeout exceeded; try restarting transaction

现象:数据库只能读,不能写。


以为是DB被锁住了,show processlist;  show engine innodb status \G;找半天lock语句,最后发现是因为mysql所在磁盘分区满了……


解决方法:

/etc/init.d/mysqld stop     (innodb直接stop很慢,查询如何快速关闭)

mv mysql/* /data/mysql

rm -rf mysql

ln -s /data/mysql mysql

/etc/init.d/mysqld start


你可能感兴趣的:(mysql错误: Lock wait timeout exceeded; try restarting transaction)