linux--mysql改密码
Posted 苏格拉的底
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux--mysql改密码相关的知识,希望对你有一定的参考价值。
linux安装的mysql忘记密码改密码
运行命令
ps -ef | grep -i mysql
关闭运行命令
service mysqld stop
修改mysql的配置文件my.conf
打开ftp文件/etc 在文件的[mysqld]标签下添加一句:skip-grant-tables
保存后启动数据库service mysqld start
进入到数据库mysql -u root
use mysql
继续
update mysql.user set authentication_string=password('root_password') where user='root';
root_password替换成你想要的密码
然后再把之前添加在my.cnf skip-grant-tables
f语句删除
quit
退出 mysql -u root
就能登录了
以上是关于linux--mysql改密码的主要内容,如果未能解决你的问题,请参考以下文章
Linux MySQL8 Unknown system variable 'validate_password_policy'Your password does not satis
Linux MySQL8 Unknown system variable 'validate_password_policy'Your password does not satis
修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段