如何列出 Linux 的所有 phpmyadmin 用户/密码

发布于 2024-10-26 03:28:08 字数 51 浏览 3 评论 0原文

当我忘记了数据库密码时,如何列出 Linux 的所有 phpmyadmin 用户/密码?

how to List all phpmyadmin user/pass for Linux as i forgot the DB password?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长亭外,古道边 2024-11-02 03:28:08

无需身份验证即可启动 mysql 服务器

mysqld_safe --skip-grant-tables

登录到 mysql 服务器

mysql --user=root mysql

重置包括 root 在内的任何用户的密码

update user set Password=PASSWORD('new_password') where user='user_name';

现在启动服务器并使用新密码。

Start mysql server without authentication

mysqld_safe --skip-grant-tables

Login to mysql server

mysql --user=root mysql

reset the password of any user inclusing root

update user set Password=PASSWORD('new_password') where user='user_name';

Now start the server and use the new password.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文