MySQL ERROR 1290 (HY000): 处理 The MySQL server is running with the --skip-grant-tables option

第1.找不到初始密码可以在my.ini中[mysqld] 添加:
skip-grant-tables
第2.修改MySQL数据库配置文件无密码登录后,修改密码报错:
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

第3.先执行:
flush privileges;
4.再执行修改密码命令,可以了:
set password for root@localhost=password(‘你的密码’);


版权声明:本文为qq_28932903原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。