Multiple methods to modify MySQL root password (recommended)

Multiple methods to modify MySQL root password (recommended)

Method 1: Use the SET PASSWORD command

MySQL -u root
  mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

Method 2: Using mysqladmin

  mysqladmin -u root password "newpass"

If the root password has been set, use the following method

mysqladmin -u root password oldpass "newpass"

Method 3: Use UPDATE to edit the user table directly

 mysql -u root
  mysql> use mysql;
  mysql> UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root';
  mysql> FLUSH PRIVILEGES;

When you lose your root password, you can

mysqld_safe --skip-grant-tables&
  mysql -u root mysql
  mysql> UPDATE user SET password=PASSWORD("new password") WHERE user='root';
  mysql> FLUSH PRIVILEGES;

The above are the various methods of changing the root password of MySQL that I introduced to you. 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!

You may also be interested in:
  • MySQL - 4 ways to change the root password (taking Windows as an example)
  • What should I do if I forget my MySQL password? How to reset MySQL root password
  • Solution to forgetting the root password of mysql under windows
  • How to view or modify the root password of MySQL if it is forgotten (with pictures and text)
  • How to forget the root password in MySQL 5.7 and change the root password in MySQL 5.7
  • The perfect solution for forgetting the root password of Mysql
  • How to view the root password for MySQL connection
  • Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql
  • 4 ways to modify MySQL root password (summary)
  • How to forget the root password in Mysql8.0.13 under Windows 10 system

<<:  Native JavaScript implementation of progress bar

>>:  How to use Docker container to access host network

Recommend

Detailed explanation of several ways to install CMake on Ubuntu

apt install CMake sudo apt install cmake This met...

Example code of implementing starry sky animation with CSS3 advanced LESS

This article introduces the sample code of advanc...

Mac+IDEA+Tomcat configuration steps

Table of contents 1. Download 2. Installation and...

JavaScript canvas to achieve raindrop effects

This article example shares the specific code of ...

Operate on two columns of data as new columns in sql

As shown below: select a1,a2,a1+a2 a,a1*a2 b,a1*1...

Detailed explanation of JavaScript prototype and examples

Table of contents The relationship between the co...

JavaScript code to achieve a simple calendar effect

This article shares the specific code for JavaScr...

Explanation of several ways to run Tomcat under Linux

Starting and shutting down Tomcat under Linux In ...

Detailed explanation of the solution to font blur when using transform in CSS3

This question is very strange, so I will go strai...

WeChat Mini Program Basic Tutorial: Use of Echart

Preface Let’s take a look at the final effect fir...