Mysq遇到的問題整理更新

2022-08-17 21:15:12 字數 834 閱讀 4664

1、lock wait timeout exceeded; try restarting transaction的問題解決

解決辦法:

a、# 檢視當前的事務隔離級別

b、# 檢視當前資料庫的執行緒情況

c、沒有看到正在執行的很慢sql記錄執行緒,再去檢視innodb的事務表innodb_trx,看下裡面是否有正在鎖定的事務執行緒,看看id是否在show full processlist裡面的sleep執行緒中,如果是,

就證明這個sleep的執行緒事務一直沒有commit或者rollback而是卡住了,我們需要手動kill掉。

select * from information_schema.innodb_trx;

發現有id為2368649的sql,需要手動kill掉

kill 2368649;

kill之後,再去執行上面的delete語句,就可以執行成功了。

5、檢視mysql中的自動提交事務的查詢

show variables like 'autocommit';

select @@autocommit;

react native 遇到的問題整理

1.uncaught typeerror super expression must either be null or a function,not 原因 在元件化繼承react.component 時 將component 寫成了小寫component 導致這個錯 所以在react native...

solaris遇到的問題整理總結

solaris遇到的問題總結 1設定靜態ip vi etc host 192.168.20.sunos10 loghost sunos10是主機名 2.vi etc inet ipnodes 127.0.0.1 localhost 192.168.20.sunos10 loghost ip位址 主機...

更新Cocoapods 及遇到的問題

pod install時提示 the master repo requires cocoapods 1.0.0 currently using 0.39.0 所以要公升級cocoapods啦 參考 sudo gem update system 先更新gem,國內需要切換源 sudo gem inst...