반응형
mysql
"Lock wait timeout exceeded; try restarting transactionSQL 오류 (1205): Lock wait timeout exceeded; try restarting transaction" 에러 발생시
mysql DB server에 접속한다.
root계정으로 접속 한다.
mysql -u root -p
innodb_lock_wait_timout 값을 조회한다.
show variables like '%wait_timeout%';
innodb_lock_wait_timout 값을 변경한다.
set innodb_lock_wait_timeout= 28800;
반응형
'개발 > Mysql' 카테고리의 다른 글
[Mysql] left join group by null 혹은 0값도 출력 (0) | 2020.05.26 |
---|---|
[Mysql] The table '테이블명' is full (0) | 2020.04.13 |
[Mysql] syntax error, unexpected '(', expecting FTS_TERM or FTS_NUMB or '*' (0) | 2020.03.30 |
[Mysql] [HY000][1191] Can't find FULLTEXT index matching the column list (0) | 2020.02.13 |
[Mysql] The last packet successfully received from the server was 45,693,756 milliseconds ago 에러 (0) | 2019.12.24 |