- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
需要的朋友可以参考下,按照网上之前版本的操作,将my.ini中的skip-grant-tables注释去掉,然后在命令行中以mysql -u root -p可以直接进入,
但是执行
mysql> update mysql.user set password=password('password') where user='root';
会出现以下错误
mysql> ERROR 1054 (42S22): Unknown column 'password' in 'field list'
错误原因:
mysql数据库下已经没有password这个字段了,password字段改成了authentication_string。
解决方法:
mysql> update mysql.user set authentication_string=PASSWord('password') where Use
r='root';
返回信息:
Query OK, 1 row affected, 1 warning (0.15 sec)
Rows matched: 1 Changed: 1 Warnings: 1
之后,记得注释掉my.ini中的skip-grant-tables。
最后,操作完后重新启动mysql服务,便可以用之前设置好的密码登录了。
售前咨询
售后咨询
备案咨询
二维码
TOP