root 怎么什么权限也没了
linux下用 mysql,修改root密码:mysqladmin -u root password 1234; 出现提示: can't turn off logging; error: 'Access Denied; you need the super privilege for this operation.' 这是怎么回事啊?
用mysql -u root 直接进入mysql,mysql>use mysql; 出现 ERROR1004: Access Denied for user ' ' @'localhost' to database 'mysql'
用root登的,为什么会出现这种情况呢??不解:em11:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
mysqladmin 不是谁想用就能用的啊~ 后面不是提示要有 the super privilege for this operation
用 mysql -uroot -p 访问,以确定登录正确。
还不行就只能用 --skip-grant 启动进行修改了~ 祝你好运!
谢谢 :wink: :wink:
那是因为你用的匿名用户。不是root。