Lock wait timeout exceeded; try restarting transaction

해결방법

프로세스들을 확인하고 해당 프로세스에 대해 종료한다.

프로세스 조회

- show processlist;

프로세스 종료
- kill id;

테이블 락 해제

- unlock tables;

MySQL 재시작

- /etc/init.d/mysqld restart

- service mysqld restart