First of all, I don't know why I can't log in to MySQL using the command line or workbench, and it prompts 'Access denied for user 'root'@'localhost'. Valid operation records: 1. First, skip the permissions to log in to MySQL and view the user table. Stop mysql service~ Start Notice: It may prompt mysqld_safe Directory '/var/run/mysqld' for UNIX socket file don't exist Solution: (I tried and found that sudo must be added) sudo mkdir -p /var/run/mysqld sudo chown mysql:mysql /var/run/mysqld Execute the above safe mode again to start This time the prompt statement shows, This time you can log in without a password: mysql -u root Press Enter to log in The sql statement to query the mysql.user table is as follows: Add pictures (to be added later) Someone else suggested doing it this way, but I didn't try it.
2. Found that the user's plugin is socket_plugin, changed to mysql_native_password Modify the plugin permissions of root: update mysql.user set authentication_string=PASSWORD('newPwd'), plugin='mysql_native_password' where user='root'; flush privileges; quit; (Note that the modification here must be correct, so as not to be like the author, carelessly modifying the content of the plugin by one letter less, and then having the following troubles) 3. There are other users in the user table. Root cannot log in, but you can log in with other users. After searching, I found the following valid operations: In the installation directory of mysql, there is usually a debain.cnf file in /etc/mysql, which contains user and password. Use this file to log in and copy the password. Then you can modify the plugin of the user table root again. The operation is the same as above. Restart the mysql service, You can log in as the root user. Reference blog: MySQL ERROR 1698 (28000) error https://www.jb51.net/article/117566.htm mysql How to view the currently used configuration file my.cnf https://www.jb51.net/article/110395.htm linux -- Ubuntu view and modify mysql login name and password, install phpmyadmin https://www.jb51.net/article/174925.htm Summarize The above is the editor's introduction to solving the MySQL login error: ''Access denied for user ''root''@''localhost''. I hope it will be helpful to everyone! You may also be interested in:
|
<<: JavaScript to implement the function of changing avatar
>>: How to turn a jar package into a docker container
MySQL's index types include normal index, uni...
When people are working on a backend management s...
Table of contents 1. Overview 2. Routing Navigati...
CSS has two pseudo-classes that are not commonly ...
Table of contents Preface Laying the foundation p...
Table of contents Optimizing sorting queries Avoi...
Blockquote Definition and Usage The <blockquot...
1. Set and change the root password Check whether...
The image tag is used to display an image in a we...
Enter the running container # Enter the container...
1. Why do packaging? Facilitates overall code cal...
Table of contents The origin of JSBridge The bidi...
Table of contents question: 1. Enable remote logi...
Cluster Deployment Overview 172.22.12.20 172.22.1...
Kubernetes is the leader in the container orchest...