我是靠谱客的博主 激动小猫咪,最近开发中收集的这篇文章主要介绍mysql修改密码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

mysql修改密码的方式常见的有以下四种:

1. 已知密码的情况下:

1.1 mysqladmin修改

mysqladmin -uroot -p1204 password 1234

1.2 set password

set password for root@localhost = password('2345');

1.3 update user  (mysql5.7以后是setauthentication_string字段,之前是password)

mysql> use mysql; 
mysql> UPDATE user SET plugin='mysql_native_password' WHERE User='root';
mysql> update user set authentication_string=password('123') where user='root' and host='localhost'; 
mysql> flush privileges; 
mysql> exit; 

 ubuntu18需要在flush privileges前加

update user set plugin="mysql_native_password";

2.忘记密码的情况下:

sudo /etc/init.d/mysql stop
sudo mysqld_safe --user=mysql --skip-grant-tables --skip-networking &


mysql> use mysql; 
mysql> update user set authentication_string=password('123') where user='root' and host='localhost'; 
mysql> flush privileges; 
mysql> exit; 

 

最后

以上就是激动小猫咪为你收集整理的mysql修改密码的全部内容,希望文章能够帮你解决mysql修改密码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部