mysql增加 刪除使用者 增加許可權

2021-06-29 04:23:50 字數 780 閱讀 9012

mysql>

insert into mysql.user(host,user,password) values("

localhost

","test",password("1234"));

增加了乙個使用者名為test、密碼為1234使用者,但該使用者只能在本地登陸,若想遠端登陸的話可將localhost改為%表示任何一台電腦都可以登陸,或改為特定的ip表示只能在特定的ip位址上登陸。

mysql>grant all privileges on testdb.* to test@localhost identified by '1234';

表示給使用者test在本地登陸時增加了對testdb資料庫的所有表的任何操作。若想指定許可權的話,可將all privileges修 改為select或update或delete或三者的組合;若想指定表的許可權,可以將testdb.*修改為testdb.info表示可對testdb資料庫中的info表進行操作;若想指定訪問的位址,可將@%修改為localhost表示使用者test只能在本地進行對資料庫的操作。

mysql>flush privileges;

mysql>delete from user where user='test' and host='localhost';

mysql

>drop user 使用者名稱@'%';

mysql>update mysql.user set password=password('新密碼') where user="test" and host="localhost";

怎麼增加mysql許可權 mysql新增許可權許可權使用者

文章目錄 1 create database dbtest 2 create user testuser identified by 123456 3 grant select,insert,update,references,delete,create,drop,alter,index,trigg...

mysql 增加使用者 mysql 增加使用者

3 增加使用者 注意 和上面不同,下面的因為是mysql環境中的命令,所以後面都帶乙個分號作為命令結束符 格式 grant select on 資料庫.to 使用者名稱 登入主機 identified by 密碼 第一種 增加乙個使用者test1密碼為abc,讓他可以在任何主機上登入,並對所有資料庫...

給流程增加許可權控制

wf提供許可權控制的功能,其中包括兩種方式 activedirectoryrole xmlversion 1.0 encoding utf 8 configuration connectionstrings addname sqlserverconnection connectionstring i...