XAMPP修改root密码并修改相关配置

         刚刚安装的XAMPP里带的mysql的root用户是没有密码的,如果需要设置密码,首先得启动mysql,然后使用命令行cd到mysql的bin目录下,然后使用root用户登录,执行:

 SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

        这样就设置了root的密码为newpass,然后想要在XAMPP里的mysql的admin进入mysql管理界面,还需要修改相关配置,因为原始的配置是没有密码的,所以请修改phpMyAdmin目录下的config.inc.php文件:

 /* Authentication type and info */
$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;

修改成:

 /* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'newpass';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

    最后重启mysql即可。

你可能感兴趣的:(XAMPP修改root密码并修改相关配置)