如何重置mysql的密码

时间:2023-03-08 21:51:24
  1. 如何重置mysql的密码
  2. 如果知道密码,则通过以下方式修改;
  3. gaurav@gaurav:~$ mysql --user=root --pass mysql
  4. Enter password:
  5. mysql> update user set Password=PASSWORD('new-password-here') WHERE User='root';
  6. Query OK, 2 rows affected (0.04 sec)
  7. Rows matched: 2  Changed: 2  Warnings: 0
  8. mysql> flush privileges;
  9. Query OK, 0 rows affected (0.02 sec)
  10. mysql> exit
  11. Bye
  12. 如果忘记密码,则先停止mysql,然后加上参数skip-grant-tables重新启动mysql server
  13. root@gaurav:~# /etc/init.d/mysql stop
  14. Now you should start up the database in the background, via the mysqld_safe command:
  15. root@gaurav:~# /usr/bin/mysqld_safe --skip-grant-tables &
  16. [1] 4271
  17. Starting mysqld daemon with databases from /var/lib/mysql
  18. mysqld_safe[6763]: started
  19. 然后登陆mysql,修改密码
  20. root@gaurav:~$ mysql --user=root mysql
  21. Enter password:
  22. mysql> update user set Password=PASSWORD('new-password-here') WHERE User='root';
  23. Query OK, 2 rows affected (0.04 sec)
  24. Rows matched: 2  Changed: 2  Warnings: 0
  25. mysql> flush privileges;
  26. Query OK, 0 rows affected (0.02 sec)
  27. mysql> exit
  28. Bye
  29. 最后重启mysql server就可以了。
  30. root@gaurav:~# /etc/init.d/mysql start
  31. Starting MySQL database server: mysqld.
  32. Checking for corrupt, not cleanly closed and upgrade needing tables..
  33. 用新密码登陆验证下
  34. root@gaurav:~# mysql --user=root --pass=new-password-here
  35. Welcome to the MySQL monitor.  Commands end with ; or \g.
  36. Your MySQL connection id is 5 to server version: 5.0.24a-Debian_4-log
  37. Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
  38. mysql> exit
  39. Bye