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 is a detailed tutorial on setting passwords for the MySQL free installation 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! You may also be interested in:
|
<<: Methods for optimizing Oracle database with large memory pages in Linux
>>: Canvas draws scratch card effect
There are many loop statements in JavaScript, inc...
Table of contents Integrity constraints Definitio...
VMware version: VMware-workstation-full-16 VMware...
Table of contents style scoped style module State...
When we write pages, we sometimes find that the C...
1. MySql Architecture Before introducing the stor...
Table of contents 1. innodb_buffer_pool_size 2. i...
<br />In the first section of this series, w...
Table of contents 1. Computed properties Syntax: ...
1. What is it? MySQL is the most popular relation...
After I published my last article “Zen Coding: A Q...
Preface: One day, I built a MySQL service in Dock...
Table of contents Step 1: Install node_modules in...
The author has been working on a micro-frontend p...
The shell script sets access control, and the IP ...