1. Problem description: MysqlERROR1698 (28000) solution, newly installed mysql-server-5.7, login to this problem, ordinary users can not enter mysql, only root users can enter, and no password is required. ~$ mysql -u root -p Enter password: ERROR 1698 (28000): Access denied for user 'root'@'localhost' Second, the solution steps: Stop mysql service ~$ sudo service mysql stop Start MySQL in safe mode ~$ sudo mysqld_safe --skip-grant-tables & After MySQL is started, you can log in without a password ~$ mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.10 MySQL Community Server (GPL) Check the user table. The cause of the error is here. The root plugin has been changed to auth_socket, and the plugin for logging in with a password should be mysql_native_password. mysql> select user, plugin from mysql.user; +-----------+----------------------+ | user | plugin | +-----------+----------------------+ | root | auth_socket | | mysql.sys | mysql_native_password | | dev | mysql_native_password | +-----------+----------------------+ <strong>3</strong> rows in set (<strong>0.01</strong> sec) There is an official description about auth_socket: https://dev.mysql.com/doc/mysql-security-excerpt/5.5/en/socket-authentication-plugin.html. Anyway, we won’t use it for now, so just change it here. mysql> update mysql.user set authentication_string=PASSWORD('newPwd'), plugin='mysql_native_password' where user='root'; Query OK, <strong>1</strong> row affected, <strong>1</strong> warning (<strong>0.00</strong> sec) Rows matched: <strong>1</strong> Changed: <strong>1</strong> Warnings: <strong>1</strong> mysql> flush privileges; Query OK, <strong>0</strong> rows affected (<strong>0.00</strong> sec) Restart the service and the problem will be solved ~$ sudo service mysql stop ... * MySQL Community Server 5.7.10 is stopped ~$ sudo service mysql start .. * MySQL Community Server 5.7.10 is started ~$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.10 MySQL Community Server (GPL) The above is the solution to the MySql Error 1698 (28000) problem introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Installation of Docker CE on Ubuntu
>>: JavaScript code to achieve a simple calendar effect
Table of contents 1. Basic Concepts 1.1 Two kinds...
This article shares the specific code of jQuery t...
Prepare 1. Download the required installation pac...
This article uses an example to illustrate the pa...
For example: Copy code The code is as follows: <...
1. Download Maven Maven official website: http://...
Preface When I was writing a small project yester...
After creating a container locally, you can creat...
What we are simulating now is a master-slave syst...
What is Let’s first look at the concept of Docker...
This article shares with you a detailed tutorial ...
MySQL is divided into installation version and fr...
Document mode has the following two functions: 1. ...
First you need to install Vue-cli: npm install -g...
This article describes the definition and usage o...