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:
|
<<: Example of how to adapt the Vue project to the large screen
>>: Examples of using Docker and Docker-Compose
If you are using the latest Ubuntu Server version...
MySQL is a free relational database with a huge u...
Recently, due to the increase in buttons in the b...
MySQL 5.7.8 introduced the json field. This type ...
This article mainly introduces an example of how ...
In enterprises, database high availability has al...
Limit usage When we use query statements, we ofte...
1. Elements and tags in HTML <br />An eleme...
Before talking about CSS priority, we need to und...
1. Introduction When a web project is published o...
Virtualization and containerization are two inevi...
Table of contents 1. Front-end leading process: 2...
1. Why set maxPostSize? The tomcat container has ...
1. Apache 2.4.41 installation and configuration T...
Code Knowledge Points 1. Combine fullpage.js to a...