1. Log in to the system as the system administrator.
2. Stop the MySQL service.
3. Enter the command window, and then enter the MySQL installation directory. For example, my installation directory is c:mysql, enter C:mysqlbin
4. Skip the permission check to start MySQL,
c:mysqlbin>mysqld-nt --skip- grant-tables
5. Reopen a window, enter the c:mysqlbin directory, and set a new password for root
c:mysqlbin>mysqladmin -u root flush-privileges password "newpassword"
c:mysqlbin>mysqladmin -u root -p shutdown
Replace newpassword with the root password you want to use. The second command will prompt you to enter a new password. Repeat the password entered in the first command.
6. Stop MySQL Server and start Mysql in normal mode
7. You can use the new password to connect to Mysql. :)
The above introduces the steps for retrieving the php database password of phison-up10 mass production tool v1.78.00, including the content of phison-up10 mass production tool v1.78.00. I hope it will be helpful to friends who are interested in PHP tutorials.