[置顶] 【mysql 错误】1209 - The MySQL server is running with the --read-only option so it cannot execute this s

时间:2021-06-28 00:41:50

1209 - The MySQL server is running with the–read-only option so it cannot execute this statement

一般这个错误有两种原因:

1.连到从库了。从库一般设置为只读。

2.主库的read_only参数被修改为1

为了先解决问题,先去查询主库上read_only参数的值。果然read_only被设置为1.

手工修改为0后,问题解决。问题是read_only为什么会设置为1呢?

解决步骤如下:

mysql> select @@read_only;

+————-+

| @@read_only |

+————-+

| 1 |

+————-+

1 row in set (0.00 sec)

mysql> set global read_only=0;

Query OK, 0 rows affected (0.00 sec)