MySQL5.7 Waiting for global read lock

系统报故障不能使用,从应用的日志上分析:

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;

你可能感兴趣的:(mysql)