07
03/15
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;