Preface I recently learned Linux, and then changed Win to Ubuntu. The previously installed mysql is no longer usable. Now I will install mysql on ubuntu18.0.4 and record the problems encountered as follows: Download and install mysql Execute the statement Because I have already installed it here, this will happen. You can view the installed version through mysql --version. Login to mysql Execute the statement -u is user and -p is port. When logging in, ERROR 1698 (28000): Access denied for user 'root'@'localhost' occurs. This should be caused by forgetting the password or not remembering the initialization password when we installed it before: Here's how to solve this problem: 1. Enter the command The debian-sys-maint account is the MySQL user automatically generated by the system when MySQL is installed, and the corresponding password is the password of this user. 2. Log in to the account debian-sys-maint: 3. Change the root account password: Enter the command use mysql; Then enter the command: UPDATE user SET authentication_string=PASSWORD('The password you want to set') where USER='root'; This is to set the password for the root account. Then enter the command quit to exit mysql, and execute the restart mysql command sudo service mysql restart; Then log in to mysql, and when executing mysql -u root -p, I still get an error: ERROR 1524 (HY000): Plugin 'msyql_native_password' is not loaded At this time, the password has actually been changed successfully. The field of plugin root is auth_socket, which needs to be changed. 4. Modify plugin: Continue to log in using Execute the command: Execute the command: Then execute the command: update user set authentication_string =password('the password you want to set'),plugin='mysql_native_password' where user='root'; Finally, exit and restart mysql: Summarize The above is what I introduced to you about installing MySQL in Ubuntu 18.0.4 and solving ERROR 1698 (28000): Access denied for user 'root'@'localhost'. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you! You may also be interested in:
|
>>: Node implements search box for fuzzy query
Table of contents 1. Build the operating environm...
Table of contents First look at the effect: accom...
This article example shares the specific code of ...
Table of contents Preface First look at React Con...
Create a new server.js yarn init -y yarn add expr...
We need to first combine the air quality data wit...
I have been using CSS for a long time, but I have...
cause The way to import external files into a min...
Table of contents Preface 1. The effect is as sho...
Preface In this article, we will continue to expl...
Create a database Right click - Create a new data...
1. Command Introduction bzip2 is used to compress...
1. Monitoring architecture diagram 2. Implementat...
Preface The notification bar component is a relat...
This article mainly records a tomcat process, and...