#1045 - Access denied for user 'pmausr'@'localhost' (using...
发布网友
发布时间:2024-09-30 06:02
我来回答
共1个回答
热心网友
时间:2024-10-06 05:27
1、在phpmyadmin的登陆页面中,先选一下繁体字,然后再选简体中文,然后再登陆
2、在 MySQL的命令行中更新一下密码
更新密码的方法
update user set password=password('原密码') where user='用户名';
3、在config.inc.php 文件中
搜索「$cfg['Servers'][$i]['auth_type'] 后面的登录方式改成cookie如:
「$cfg['Servers'][$i]['auth_type'] = 'cookie';」
若不成功,还是得试试
在config.inc.php 文件中
搜索「$cfg['Servers'][$i]['auth_type'] = 'cookie';」,改成「$cfg['Servers'][$i]['auth_type'] = 'http';」
搜索「$cfg['Servers'][$i]['controluser'] = 'pmausr';」,改成「$cfg['Servers'][$i]['controluser'] = 'root';」
搜索「$cfg['Servers'][$i]['controlpass'] = 'pmapass';」,改成「$cfg['Servers'][$i]['controlpass'] = 'MYSQL的密码;」