首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

linux上忘记mysql root密码的解决办法

2013-01-25 
linux下忘记mysql root密码的解决方法1、结束当前正在运行的mysql进程。# service mysqld stop2、用mysql安全

linux下忘记mysql root密码的解决方法
1、结束当前正在运行的mysql进程。

# service mysqld stop


2、用mysql安全模式运行并跳过权限验证。
# 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 namesYou can turn off this feature to get a quicker startup with -ADatabase changedmysql> update user set Password = PASSWORD('root') where User ='root';Query OK, 3 rows affected (0.00 sec)Rows matched: 3  Changed: 3  Warnings: 0mysql> flush privileges;mysql> quit;mysql> exit

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


热点排行