MySQL forgotten password how to do the installation FastAdmin?

MySQL forgotten password how to do the installation FastAdmin?

Plus the skip-grant-tables parameter, then just use the user name to start MySQL can enter MySQL.

Then you can use the command to change the root password.

details as follows:

mysqld_safe --skip-grant-tables &

use mysql;
update user set password=password('root') where user='root';

Guess you like

Origin www.cnblogs.com/F4NNIU/p/10979733.html