1. Check whether the MySQL service is started. If it is started, shut down the MySQL service. Run the command: ps -ef | grep -i mysql If it is open, run the shutdown command: service mysqld stop 2. Modify the mysql configuration file my.conf Generally, in the /etc directory, run the command: vi /etc/my.cnf to edit the file Add a sentence under the [mysqld] tag in the file: skip-grant-tables Then press wq! to save and exit. 3. Restart the database Run the command: service mysqld start 4. Restart the database Run the command: service mysqld start 5. Enter the mysql database Run the command: mysql -u root 6. Enter the mysql database Run the command: mysql -u root 7. Change password Here is how 5.6 does it
Here is how 5.7 does it
8. Delete what was added in step 2, restart the server, and then you can log in to the server using the password you just changed. mysql -u root -p At this point, everything is finished. 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:
|
<<: Details on how to write react in a vue project
>>: How to use mysqldump for full and point-in-time backups
This article example shares the specific code of ...
Table of contents Preface question principle test...
1. Install and start nginx # Install nginx sudo a...
Use scenarios: The project's pages need to lo...
The establishment of MySQL index is very importan...
This article uses an example to describe how MySQ...
1. Clarify the design direction <br />First,...
Table of contents Impact of full table scan on th...
Introduction to Load Balancing Before introducing...
This article example shares the specific code of ...
This tutorial is only applicable to Windows syste...
As shown below: The test command determines wheth...
Table of contents Preliminary preparation Impleme...
Caused by: java.sql.SQLException: Incorrect strin...
The benefits of using MySQL master-slave replicat...