mysql通过文档读取并执行命令之快速为mysql添加多用户和数据库技巧
#vimysqlusers.txt createdatabasedataname; grantallprivilegesondataname.*tousername@localhostidentifiedby‘password‘; flushprivileges; #/usr/local/mysql/bin/mysql-uroot-ppassword<mysqlusers.txt
蓝色斜体部分为对应的用户名和密码,添加多个用户及数据库,只需要复制中间部分代码并修改对应的位置即可,如:
createdatabasedataname1; grantallprivilegesondataname1.*tousername1>@localhost”identifiedby‘password‘; flushprivileges; createdatabasedataname2; grantallprivilegesondataname2.*tousername2>@localhost”identifiedby‘password‘; flushprivileges;
以上内容给大家分享了mysql通过文档读取并执行命令之快速为mysql添加多用户和数据库技巧,希望大家喜欢,关于数据库内容请持续关注本站,本站每天都有新的内容更新