phpMyAdmin/MySQL 导出用户/权限以便以后导入
有没有办法从 phpMyAdmin 版本 3.3.9 导出权限/用户?是的,采用这样的格式,以后可以将它们导入到新的安装中。
如果能保留数据库关系就好了等等。
如果 phpMyAdmin 无法处理,MySQL 命令行解决方案也可以工作。
提前致谢!
Is there a way to export priviledges/users out of phpMyAdmin version 3.3.9? And yes, in such format that later those could be imported into a new installation.
It would be good if database relations would be kept and so on.
If phpMyAdmin cannot handle it, MySQL command line solution will work too.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上,您想从
mysql
数据库转储一些表,例如columns_priv
、db
、tables_priv
和user
据我记得 phpmyadmin 有配置选项来隐藏某些数据库,但您可以通过在 url 中输入
?db=mysql
来访问它。Basically you want to dump some tables from
mysql
database, likecolumns_priv
,db
,tables_priv
anduser
As far as I remember phpmyadmin have configuration option to hide some databases, but you can access it by typing
?db=mysql
in url.