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:
|
<<: Native JavaScript implementation of progress bar
>>: How to use Docker container to access host network
Problem description: The Linux system's netwo...
apt install CMake sudo apt install cmake This met...
This article introduces the sample code of advanc...
Everyone is familiar with the meta tag in desktop...
Table of contents 1. Introduction to High Availab...
Table of contents 1. Download 2. Installation and...
This article example shares the specific code of ...
This article records the installation and configu...
As shown below: select a1,a2,a1+a2 a,a1*a2 b,a1*1...
Recently, Microsoft released the 2019 server syst...
Table of contents The relationship between the co...
This article shares the specific code for JavaScr...
Starting and shutting down Tomcat under Linux In ...
This question is very strange, so I will go strai...
Preface Let’s take a look at the final effect fir...