您的位置:首页 > 数据库 > MySQL

Ubuntu下忘记MySQL密码重设方法

2013-06-17 20:41 411 查看
1、结束当前正在运行的mysql进程。

# /etc/init.d/mysql stop

2、用mysql安全模式运行并跳过权限验证。

# /usr/bin/mysqld_safe --skip-grant-tables

3、重开一个终端以root身份登录mysql。

# mysql -u root

4、修改root用户口令。

mysql> use mysql;

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

Database
changed

mysql> update user set Password = PASSWORD('root') where User ='root';

Query OK, 3 rows affected (0.00 sec)

Rows matched: 3 Changed: 3 Warnings: 0

mysql>
exit

5、结束mysql安全模式,用正常模式运行mysql。

# /etc/init.d/mysql restart
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: