Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我忘记了我的 MySQL 所有者的详细信息。我需要一种方法来找到我的用户名。我的密码不会有问题。我使用 Ubuntu 12.04 Linux,并且更喜欢命令行解决方案。
先感谢您。
好吧,那么你有一个明确的方法来恢复它:
运行查询
SELECT DISTINCT user FROM mysql.user
就是这样 - 你有一个用户列表。把它保存在某个地方,然后正常运行服务器并一一尝试您的用户名。
提示:如果要重置root密码,有相应的手册页。
那么有一种简单的方法如何以root身份更改mysql用户密码
mysql -u root -p password mysql> SET PASSWORD FOR username = PASSWORD('new_password_here');