分类

链接

2025 年 11 月
 12
3456789
10111213141516
17181920212223
24252627282930

近期文章

热门标签

新人福利,免费薅羊毛

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 暂无评论 阅读(2,237)