mysql server is running with the --skip-grant-tables option

mysql server is running with the --skip-grant-tables option

The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
It seems that MYSQL is still running in --skip-grant-tables mode. How can I get it back to the original mode?

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 skip-grant-tables , and restart mysql

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;
(Turn off the read-only attribute of the new master database)

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';
mysql> SET GLOBAL binlog_format = 'ROW';

explain:

set global read_only=0; turn off read-only, can read and write
set global read_only=1; start read-only mode

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:
  • The MySQL server is running with the --read-only option so it cannot execute this statement
  • mysql databasemysql: [ERROR] unknown option ''--skip-grant-tables''
  • Detailed explanation of ensuring the consistency of MySQL views (with check option)
  • Solution to the error message "java.sql.SQLException: Incorrect string value:'\xF0\x9F\x92\xA9\x0D\x0A...'" when storing emoticons in MySQL
  • NULL and Empty String in Mysql
  • An example of connecting mysql with php via odbc to any database
  • Detailed explanation of installing and completely uninstalling mysql with apt-get under Ubuntu
  • Examples of the correct way to use AES_ENCRYPT() and AES_DECRYPT() to encrypt and decrypt MySQL
  • Detailed explanation of using pt-heartbeat to monitor MySQL replication delay
  • Introduction to the use of MySQL pt-slave-restart tool

<<:  How to use cutecom for serial communication in Ubuntu virtual machine

>>:  Vue3.0 routing automatic import method example

Recommend

How to install nginx in centos7

Install the required environment 1. gcc installat...

Things You Don’t Know About the CSS ::before and ::after Pseudo-Elements

CSS has two pseudo-classes that are not commonly ...

The new version of Chrome browser settings allows cross-domain implementation

Preface Currently, the front-end solves cross-dom...

Use of Linux watch command

1. Command Introduction The watch command execute...

Implementation of whack-a-mole game in JavaScript

This article shares the specific code for JavaScr...

The easiest way to make a program run automatically at startup in Linux

I collected a lot of them, but all ended in failu...

Mybatis implements SQL query interception and modification details

Preface One of the functions of an interceptor is...

Tips for using DIV container fixed height in IE6 and IE7

There are many differences between IE6 and IE7 in ...

In-depth understanding of MySQL global locks and table locks

Preface According to the scope of locking, locks ...

Summary of flex layout compatibility issues

1. W3C versions of flex 2009 version Flag: displa...

mysql 5.7.11 winx64.zip installation and configuration method graphic tutorial

Install and configure the MySql database system. ...

Introduction to HTML Chinese Character Encoding Standard

In HTML, you need to specify the encoding used by...

HTML realizes real-time monitoring function of Hikvision camera

Recently the company has arranged to do some CCFA...