MySQL查看默认密码和修改密码
查看默认密码
1. 查找日志目录
find / -name mysqld.log
2. vim 查看
3. 搜索password关键字
修改密码
1. 使用默认密码登陆
2. 修改密码
MySQL5.7及以下版本:update mysql.user set authentication_string=password('xxxxxx') where user='root';
其他版本:update user set password=password('xxxxxx') where user='root';
3. 立即生效
flush privileges;
由于博主也是在攀登的路上,文中可能存在不当之处,欢迎各位多指教! 如果文章对您有用,那么请点个”推荐“,以资鼓励!
欢迎各位加我主页weixin,备注“博客园”,进入技术交流群,和我一起讨论和交流,共同进步!