Mysql5.7.14 Linux version password forgotten perfect solution

Mysql5.7.14 Linux version password forgotten perfect solution

In the /etc/my.conf file, add the following line under [mysqld]: skip-grant-tables

Remember to add it last under [mysqld], not under [ mysqld_safe ]

After saving, restart Mysql and execute directly in the Linux command line: mysql Enter

OK

To change your password:

update mysql.user set password=password('root') where user='root'

Result error:

mysql> select host,user,password from user;
ERROR 1054 (42S22): Unknown column 'password' in 'field list'
desc user;

Check the fields and find that there is no password field, but there is an authentication_string field

update mysql.user set authentication_string=password('root') where user='root';

OK

Delete skip-grant-tables under [mysqld] in the /etc/my.conf file

Restart mysql

Summarize

The above is the perfect solution for forgetting the password of Mysql5.7.14 Linux version 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:
  • Linux create user useradd command code example
  • Detailed explanation of ls command parameters in Linux and examples of ls command usage
  • Detailed explanation of the usage of the common Linux command last
  • Detailed explanation of the usage of sed and awk in Linux
  • How to configure Tomcat8.0.44 to use Apr under Linux
  • How to install multiple mysql5.7.19 (tar.gz) files under Linux
  • MySQL 5.7.19 (tar.gz) installation graphic tutorial under Linux
  • Summary of how to use firewall in Linux

<<:  Vue achieves seamless carousel effect

>>:  Detailed explanation of the construction and use of Docker private warehouse

Recommend

Vue implements Tab tab switching

This article example shares the specific code of ...

Implementing shopping cart function based on vuex

This article example shares the specific code of ...

Several ways to implement CSS height changing with width ratio

[Solution 1: padding implementation] principle: I...

CSS to achieve compatible text alignment in different browsers

In the front-end layout of the form, we often nee...

JavaScript code to implement a simple calculator

This article example shares the specific code of ...

Detailed explanation of Nginx log customization and enabling log buffer

Preface If you want to count the source of websit...

The most complete 50 Mysql database query exercises

This database query statement is one of 50 databa...

Detailed tutorial on installing MySQL 8 in CentOS 7

Prepare Environmental information for this articl...

Front-end AI cutting tips (experience)

AI image cutting needs to be coordinated with PS....

In-depth analysis of MySQL data type DECIMAL

Preface: When we need to store decimals and have ...

How to implement image mapping with CSS

1. Introduction Image maps allow you to designate...