mysql5.7设置密码
update user set authentication_string=password('你的密码') where user='root' and host='%'
上面的user='root' and host='%'可以自行设置,一般user都是root,host可以选择localhost;%表示可以远程访问host
mysql8设置密码
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码'
最后
以上就是孤独鸵鸟最近收集整理的关于mysql5.7和mysql8设置密码的全部内容,更多相关mysql5内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复