The initial password is empty, log in to MySQL with a blank password execute the following statement
Mysql>use MySQL;
mysql> UPDATE user SET Password=password ("root") WHERE user= ' root ';
mysql> FLUSH privileges;
Mysql> quit;
Modify/opt/lampp/phpmyadmin/config.inc.php
Locate the following code:
$cfg [' Servers '] [$i] [' auth_type '] = ' config ';
$cfg [' Servers '] [$i] [' user '] = ' root ';
$cfg [' Servers '] [$i] [' password '] = ';
$cfg [' Servers '] [$i] [' extension '] = ' mysql ';
$cfg [' Servers '] [$i] [' allownopassword '] = true;
Modified to:
$cfg [' Servers '] [$i] [' auth_type '] = ' config ';
$cfg [' Servers '] [$i] [' user '] = ' root ';
$cfg [' Servers '] [$i] [' password '] = ' root ';
$cfg [' Servers '] [$i] [' extension '] = ' mysql ';
$cfg [' Servers '] [$i] [' allownopassword '] = true;
The above is a small set of Linux to share the forgotten MySQL password how to modify the MySQL password related content, I hope to help you.