数据库read_only的解决办法

mysql> show global variables like "%read_only%";
mysql> flush tables with read lock;
mysql> set global read_only=1;
mysql> show global variables like "%read_only%";

将MySQL从只读设置为读写状态的命令:
mysql> unlock tables;
mysql> set global read_only=0;

打开数据库工具
找到工具选项打开命令行界面
输入以上命令行

注意要在root账户下执行

你可能感兴趣的:(数据库read_only的解决办法)