Method 1: Use the SET PASSWORD command mysql> set password for username@localhost = password('new password'); -- Examplemysql> set password for root@localhost = password('123'); Method 2: Using mysqladmin mysql> mysqladmin -u username -p old password password new password; -- Examplemysql> mysqladmin -uroot -p123456 password 123; Method 3: Use UPDATE to edit the user table directly 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 Take Windows as an example:
The above is the details of how to modify the password of the root user in MySQL. For more information about modifying the password of the root user in MySQL, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to use gdb to debug core files in Linux
>>: JavaScript to achieve digital clock effects
view: When a temporary table is used repeatedly, ...
This article shares the specific code of js to ac...
Everyone may be familiar with the select drop-dow...
Many friends have always wanted to know how to ru...
1. Download the accelerated version of msyql dock...
Preface When sharing a page, you hope to click th...
webkit scrollbar style reset 1. The scrollbar con...
Method 1: Modify the configuration file (need to ...
Redux is a simple state manager. We will not trac...
This article example shares the specific code of ...
Table of contents 1 The role of Apache 2 Apache I...
This article summarizes various ways to implement...
Since the team is separating the front-end and ba...
Table of contents 1. Container service update and...
Preface The simple understanding of MySQL permiss...