Ubuntu 18.0.4 installs mysql and solves ERROR 1698 (28000): Access denied for user ''root''@''localhost''

Ubuntu 18.0.4 installs mysql and solves ERROR 1698 (28000): Access denied for user ''root''@''localhost''

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 sudo apt-get install mysql-server

insert image description here

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 mysql -u root -p

-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:

insert image description here

Here's how to solve this problem:

1. Enter the command sudo vim /etc/mysql/debian.cnf and we will see the following information:

insert image description here

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:

mysql -u debian-sys-maint -p can log in to mysql:

insert image description here

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

insert image description here

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 debian-sys-maint account;

Execute the command:

use mysql

Execute the command:

select user,plugin from user;

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:

insert image description here

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:
  • MySQL bypasses granting information_schema objects and reports ERROR 1044 (4200) error
  • mysql databasemysql: [ERROR] unknown option ''--skip-grant-tables''
  • How to solve the 10060 unknow error when Navicat remotely connects to MySQL
  • ERROR 2002 (HY000): Can't connect to local MySQL server through socket ''/tmp/mysql.sock''
  • Solution to MySQL server login error ERROR 1820 (HY000)
  • Solve MySQL startup error: ERROR 2003 (HY000): Can't connect to MySQL server on ''localhost'' (10061)

<<:  Detailed explanation of the 10061 unknown error when using Navicat to connect to a remote Linux MySQL database

>>:  Node implements search box for fuzzy query

Recommend

HTML+CSS+JS realizes the scrolling gradient effect of the navigation bar

Table of contents First look at the effect: accom...

Vue implements paging function

This article example shares the specific code of ...

Let's talk about my understanding and application of React Context

Table of contents Preface First look at React Con...

Front-end vue+express file upload and download example

Create a new server.js yarn init -y yarn add expr...

Detailed explanation of Javascript Echarts air quality map effect

We need to first combine the air quality data wit...

Introduction to the use of em in elastic layout in CSS3: How many pixels is 1em?

I have been using CSS for a long time, but I have...

How to reference external CSS files and iconfont in WeChat applet wxss

cause The way to import external files into a min...

Websocket+Vuex implements a real-time chat software

Table of contents Preface 1. The effect is as sho...

More Ways to Use Angle Brackets in Bash

Preface In this article, we will continue to expl...

The first step in getting started with MySQL database is to create a table

Create a database Right click - Create a new data...

Use of Linux bzip2 command

1. Command Introduction bzip2 is used to compress...

Detailed explanation of monitoring Jenkins process based on zabbix

1. Monitoring architecture diagram 2. Implementat...

Three notification bar scrolling effects implemented with pure CSS

Preface The notification bar component is a relat...

Record a troubleshooting record of high CPU usage of Tomcat process

This article mainly records a tomcat process, and...