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
According to data analysis company Net Market Sha...
Kubernetes is the leader in the container orchest...
Table of contents 1. Current situation 2. Create ...
Key Modifiers When listening for keyboard events,...
Preface There is a scenario where, for the sake o...
Carousel animation can improve the appearance and...
Table of contents About Maxwell Configuration and...
Table of contents 1. beforeCreate and created fun...
Table of contents What utilities does VueUse have...
<br />The website access speed can directly ...
1. Install tomcat8 with docker 1. Find the tomcat...
1. Introduction to mysqldump mysqldump is a logic...
sshd SSH is the abbreviation of Secure Shell, whi...
Composition inheritance Combination inheritance i...
Table of contents How to view the source code of ...