MySQL5.7 Waiting for global read lock

深圳gg發表於2018-12-21

系統報故障不能使用,從應用的日誌上分析:

Cause: java.sql.SQLException: The MySQL server is running with the --read-only option so it cannot execute this statement

show processlist可以看到 99%的(3200個)會話報Waiting for global read lock
unlock tables之後,會話鎖的問題解決,但系統還是不能使用,日誌依然報read-only的錯誤。

mysql> show variables like ‘%read_only%’;
±-----------------±------+
| Variable_name | Value |
±-----------------±------+
| innodb_read_only | ON |
| read_only | ON |
| tx_read_only | OFF |
±-----------------±------+

執行下面的語句,系統即可以訪問:
set global read_only=0;
set global super_read_only=0;
flush privileges;

相關文章