Method 1: Use the SET PASSWORD command First log in to MySQL. Format: mysql> set password for username@localhost = password('new password'); Example:mysql> set password for root@localhost = password('123'); Method 2: Using mysqladmin Format: mysqladmin -u username -p old password password new password Example: mysqladmin -uroot -p123456 password 123 Method 3: Use UPDATE to edit the user table directly First log in to MySQL. mysql> use mysql; mysql> update user set password=password('123') where user='root' and host='localhost'; mysql> flush privileges; Method 4: When you forget the root password, you can do this Take Windows as an example: 1. Shut down the running MySQL service. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: jQuery realizes the scrolling effect of table row data
>>: Implementation of FIFO in Linux process communication
1. Enter start in the menu bar and click startup ...
Recently, I used html-webapck-plugin plug-in for ...
"Page screenshot" is a requirement ofte...
The installation of MySQL 8.0.12 took two days an...
I call this kind of bug a typical "Hamlet&qu...
Create docker-compose.yml and fill in the followi...
The code looks like this: // Line style of the pa...
Preface The optional chaining operator (?.) allow...
Installation Environment 1. gcc installation To i...
Preface The requirement implemented in this artic...
About who Displays users logged into the system. ...
This article example shares the specific code of ...
NodeJS copies the files: Generally, the copy oper...
Introduction During the work process, slow querie...
1. Qualitative changes brought by CSS variables T...