The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement The first method: Skip-grant-tables is configured in the mysql.ini file. Just add a # in front of it and comment it out. Modify the mysql configuration file, remove Second type: The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement Solution: mysql> set global read_only=0; flush privileges; set global read_only=1; (read-write attribute) flush privileges; Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-based logging. InnoDB is limited to row-logging when transaction isolation level is READ COMMITTED or READ UNCOMMITTED. mysql> SET SESSION binlog_format = 'ROW'; explain: set global read_only=0; turn off read-only, can read and write mysql> set global read_only=0; Query OK, 0 rows affected (0.00 sec) mysql> show variables like '%read_only%'; +------------------+-------+ | Variable_name | Value | +------------------+-------+ | innodb_read_only | OFF | | read_only | OFF | | tx_read_only | OFF | +------------------+-------+ 3 rows in set (0.00 sec) mysql> set global read_only=1; Query OK, 0 rows affected (0.00 sec) mysql> show variables like '%read_only%'; +------------------+-------+ | Variable_name | Value | +------------------+-------+ | innodb_read_only | OFF | | read_only | ON | | tx_read_only | OFF | +------------------+-------+ 3 rows in set (0.00 sec) set global read_only=0; turn off read-only, can read and write set global read_only=1; start read-only mode You may also be interested in:
|
<<: How to use cutecom for serial communication in Ubuntu virtual machine
>>: Vue3.0 routing automatic import method example
Install the required environment 1. gcc installat...
CSS has two pseudo-classes that are not commonly ...
Preface Currently, the front-end solves cross-dom...
1. Command Introduction The watch command execute...
This article shares the specific code for JavaScr...
I collected a lot of them, but all ended in failu...
With the continuous development of the Internet ec...
When you install MySQL, you will be given an init...
Preface One of the functions of an interceptor is...
There are many differences between IE6 and IE7 in ...
Preface According to the scope of locking, locks ...
1. W3C versions of flex 2009 version Flag: displa...
Install and configure the MySql database system. ...
In HTML, you need to specify the encoding used by...
Recently the company has arranged to do some CCFA...