Heim  >  Artikel  >  Datenbank  >  mysql通过文档读取并执行命令之快速为mysql添加多用户和数据库技巧_MySQL

mysql通过文档读取并执行命令之快速为mysql添加多用户和数据库技巧_MySQL

WBOY
WBOYOriginal
2016-05-30 17:10:321037Durchsuche

代码如下:


# vi mysqlusers.txt
create database dataname;
grant all privileges on dataname.* to username@localhost identified by ‘password‘;
flush privileges;
# /usr/local/mysql/bin/mysql -u root -p password

   蓝色斜体部分为对应的用户名和密码,添加多个用户及数据库,只需要复制中间部分代码并修改对应的位置即可,如:

 

代码如下:


  create database dataname1;
   grant all privileges on dataname1.* to username1>@localhost” identified by ‘password‘;
   flush privileges;
   create database dataname2;
   grant all privileges on dataname2.* to username2>@localhost” identified by ‘password‘;
   flush privileges;

以上内容给大家分享了mysql通过文档读取并执行命令之快速为mysql添加多用户和数据库技巧,希望大家喜欢,关于数据库内容请持续关注本站,本站每天都有新的内容更新

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn