phpmyadmin 无赖

发布于 2024-07-30 07:50:29 字数 174 浏览 1 评论 0原文

我想我今天做了一些令人讨厌的废话...

我在 phpmyadmin (XAMPP) 中删除了用户 (admin root) 现在我无法创建新用户。

知道如何修复,或者我应该尝试重新安装漏洞 XAMPP 数据包:-/
我使用 Leopard iMac。

/威利

I think i did some nasty crap today...

I deleted the user (admin root) in phpmyadmin (XAMPP)
now I can't create new users.

Any idea how to fix, or should I just try re-install the hole XAMPP packet :-/
I use Leopard iMac.

/Willy

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

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

发布评论

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

评论(1

风尘浪孓 2024-08-06 07:50:29

有一种方法重置权限< MySQL 手册中的 /a> 。 它涉及重置 root 密码而不是重新创建 root 帐户,但是我认为您应该能够修改方法以重新插入 root 帐户,而不会出现任何问题。

按照那里列出的步骤(任一方法),如果您更改步骤 3 以插入新帐户(字段可能会有所不同,这适用于我的特定安装):

INSERT INTO user VALUES('localhost','root',PASSWORD('some_pass'),'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
FLUSH PRIVILEGES;

您应该能够从那里获取它并将权限恢复到正常状态。

There is a method for resetting permissions in the MySQL manual. It deals with resetting the root password rather than recreating the root account, however I think you should be able to modify the method to re-insert the root account without any trouble.

Following the steps listed there (either method), if you change step 3 to insert a new account (fields might vary, this worked for my particular install):

INSERT INTO user VALUES('localhost','root',PASSWORD('some_pass'),'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
FLUSH PRIVILEGES;

You should be able to take it from there and get the permissions back up to snuff.

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