linux下mysql忘记root密码
当mysql忘记root密码时候 如何办 (2009-04-24 08:46:14)转载▼
标签: 杂谈 分类: mysql
Ubuntu或者Debian
1.
先杀mysql进程
bin/safe_mysqld --skip-grant-tables &
or
bin/mysqld_safe --skip-grant-tables &
2.
use mysql
>update user set password=password("new_pass") where user="root";
or
在mysql表下执行sql语句
update user set password="" where user="root";
3.
>flush privileges;
============ 欢迎各位老板打赏~ ===========
与本文相关的文章
- · mysql创建用户并赋予权限
- · docker定时任务Mysql脚本
- · docker安装mysql8注意事项
- · 定时备份docker中的mysql
- · docker-compose通过容器名连接mysql
- · unity3d mysql error: The given key was not present in the dictionary.
- · mysql服务性能优化—my.cnf配置说明详解(不同内存)
- · MySQL 批量修改数据表编码及字符集
- · Your database must use ‘READ-COMMITTED’ as the default isolation level.
- · MySQL-InnoDB存储引擎
- · 将数据从mysql迁移到clickhouse
- · docker安装Mysql5.7