问题描述:
买了阿里云,配置好PHPstudy后好久没用,后来登录mysql,忘记密码,所以登录不上去,想着修改密码。
解决方法:
1.停止mysql服务,
phpstudy 直接运行> phpstudy stop;
2.执行mysql参数命令:/phpstudy/mysql/bin/mysqld_safe --skip-grant-tables & 这样无限制可以访问mysql 。
3.直接登录mysql命令:/phpstudy/mysql/bin/mysql -u root -p 输入密码时直接回车就可以了。
4.选择user数据表:use mysql;
5.显示所有表:show tables;
6.查看user表中root用户的localhost权限:select * from user where user='root' and host='localhost';
7.在显示的列表中显示:root用户的localhost的权限都是'N',表示root用户本地登陆不具有权限。
8.修改root用户的localhost权限或者密码:update user set password=password("输入新的密码") where user="root";
9.刷新权限:flush privileges;
10.重新杀掉mysql进程:killall mysqld;
11.重启数据库服务:phpstudy start;