MySQL Error 1290 (HY000) Solution

MySQL Error 1290 (HY000) Solution

I struggled with a problem for a long time and repeatedly confirmed the grammatical problem. But later I searched it online and suddenly I understood. Let me summarize this.

mysql> grant select,insert,update,delete on *.* to 'root'@'%';
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> 
mysql> 
mysql> 
mysql> grant select,insert,update,delete on *.* to 'root'@'%';
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> grant all on *.* to 'root'@'%';
Query OK, 0 rows affected (0.00 sec)

Explanation:

Authorize remote login for the root user, and then find that ERROR 1290 (HY000) is reported

Then flush privileges.

Then execute authorization again and the problem is solved.

The above is a simple solution. Thank you for reading and supporting 123WORDPRESS.COM.

You may also be interested in:
  • 4 solutions to mysql import csv errors
  • Problems and solutions of error 08001 when linking to MySQL in IDEA and no table display after successful connection
  • Problems and solutions for IDEA connecting to MySQL
  • Solution to the problem that synchronous replication errors cannot be skipped in MySQL5.6 GTID mode
  • Solution to ONLY_FULL_GROUP_BY error in Mysql5.7 and above
  • Detailed explanation of the solution to the error in creating a user and granting permissions in mysql8.0
  • Django restarts after reinstalling MySQL and reports an error: How to solve the problem of No module named 'MySQLdb'
  • Solution to the error message "java.sql.SQLException: Incorrect string value:'\xF0\x9F\x92\xA9\x0D\x0A...'" when storing emoticons in MySQL
  • Description and solution of MySQLdb error when installing Python
  • How to solve the error when connecting to MySQL in Linux: Access denied for user 'root'@'localhost'(using password: YES)
  • Teach you how to solve the error when storing Chinese characters in MySQL database

<<:  Example of how to adapt the Vue project to the large screen

>>:  Examples of using Docker and Docker-Compose

Recommend

How to disable ads in the terminal welcome message in Ubuntu Server

If you are using the latest Ubuntu Server version...

MySQL date functions and date conversion and formatting functions

MySQL is a free relational database with a huge u...

How to implement multiple parameters in el-dropdown in ElementUI

Recently, due to the increase in buttons in the b...

How to operate json fields in MySQL

MySQL 5.7.8 introduced the json field. This type ...

Example of how to mosaic an image using js

This article mainly introduces an example of how ...

MySQL dual-master (master-master) architecture configuration solution

In enterprises, database high availability has al...

Summary of learning HTML tags and basic elements

1. Elements and tags in HTML <br />An eleme...

Web page CSS priority is explained in detail for you

Before talking about CSS priority, we need to und...

Solution to Nginx SSL certificate configuration error

1. Introduction When a web project is published o...

Docker large-scale project containerization transformation

Virtualization and containerization are two inevi...

The whole process record of Vue export Excel function

Table of contents 1. Front-end leading process: 2...

Tomcat maxPostSize setting implementation process analysis

1. Why set maxPostSize? The tomcat container has ...

Tutorial on installing Apache 2.4.41 on Windows 10

1. Apache 2.4.41 installation and configuration T...

CSS to implement QQ browser functions

Code Knowledge Points 1. Combine fullpage.js to a...