概述
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.7和mysql8设置密码所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复