失去 PHPMYADMIN 界面访问权限后备份 MYSQL 数据

发布于 2024-12-23 08:24:07 字数 355 浏览 1 评论 0原文

我只是想知道如何从 MYSQL 数据库备份数据并且仍然能够使用该数据 再次重新安装MYSQL?

注意——我在更改根密码后遇到了这个问题。我发布了一个有关修复此问题的问题。但不幸的是没有得到解决方案。所以我决定最后一步是备份我的数据! 这是一个链接 发布

在 WAMP 中更改 MySQL root 密码后无法连接

PS----我无法访问 PHPMYADMIN

I just want to know how to back up data From MYSQL database and Still be able to use that data
again on reinstalling MYSQL ?

NOTE-- i got into this problem after changing my ROOT password . I posted a question regarding fixing this .But unfortunately don't got the solution .So i decided the last step will be to BACK UP my data !
Here is a LINK to that
post

Can't connect after changing MySQL root password in WAMP

P.S----I HAVE NO ACCESS TO PHPMYADMIN

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

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

发布评论

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

评论(2

℉服软 2024-12-30 08:24:07

转到您的 wamp 安装驱动器,然后转到 wamp 文件夹
如果驱动器为C:,安装文件夹为WAMP,则遍历它
C:\wamp\mysql\data\
您将在此处看到该文件夹​​作为数据库的名称
将其复制到其他位置并在同一位置重新安装 phpmyadmin 后粘贴

go to your wamp installation drive, and then go to wamp folder
traverse it if the drive is C: and installation folder is WAMP
C:\wamp\mysql\data\
you will see the folder as the name of your database here
copy it to other place and paste it after reinstall phpmyadmin in the same position

此岸叶落 2024-12-30 08:24:07

好的,假设您知道新/旧/当前 root 密码,请运行以下命令。

mysqldump -u root --all-databases -p

这应该询问您密码并将 sql 转储到标准输出上。

要将其保存到 backup.sql,

 mysqldump -u root --all-databases -p > backup.sql

Okay, assuming that you know the new/old/current root passwords run the following

mysqldump -u root --all-databases -p

This should ask you the password and dump sql onto the stdout.

To save it to backup.sql,

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