ubuntu 安装 mysql 服务端后修改用户名和密码问题
别人修改都是这样的:
而我是这样的:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '('123456') where user='root' and Host = 'localhost'' at line 1
关于这个问题,网上其他人的解决方案都是反引号解决的,
而同样的方法我试过是不可以的,不知道为啥。
请问各路大神,有遇到过我这种情况吗?
回答
mysql版本不一致,你用的是8.x版本
修改密码参考下面命令
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';
以上是 ubuntu 安装 mysql 服务端后修改用户名和密码问题 的全部内容, 来源链接: utcz.com/a/29426.html