我想在我的数据库中为现有用户添加另一个主机.我希望这条新记录与现有用户具有相同的权限.我看到了这个线程https://stackoverflow.com/questions/19281305/adding-new-host-entries-to-existing-mysql-users,但它似乎没有复制现有用户拥有的整个权限.任何程序化解决方案,而不是逐个手动添加用户?
解决方法:
如果您可以安装或已经安装了MySQL Utilities,那么您可以使用mysqluserclone脚本.
这个命令很简单:
shell> mysqluserclone --source=root@localhost --destination=root@localhost \
source_user@localhost target_user:secret1@192.168.1.1
在上面的示例中,您将连接到root @ localhost(作为源)和root @ localhost(作为目标),然后将权限从source_user @ localhost复制到target_user@192.168.1.1.
所以你可以使用:
shell> mysqluserclone --source=root@localhost --destination=root@localhost \
Reynaldi@localhost Reynaldi:secret1@192.168.1.1
更多细节可以在相当有限的文档中找到.
标签:mysql,authentication
来源: https://codeday.me/bug/20190806/1600490.html