天天看點

mysql賦給使用者權限grant all privileges on

檢視mysql使用者表的結構,Field項都是各類權限限制

mysql賦給使用者權限grant all privileges on

Host限制登入的IP,User限制登入的使用者,Delete_priv限制删除權限,Grant_priv限制權限授予,Super_priv為超級權限,authentication_string為密碼的加密字元串

mysql賦給使用者權限grant all privileges on

grant 權限1,權限2,…權限n on 資料庫名稱.表名稱 to 使用者名@使用者位址 identified by '連接配接密碼';

權限1,權限2,…權限n代表select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file等14個權限。

當權限1,權限2,…權限n被all privileges或者all代替,表示賦予使用者全部權限。

當資料庫名稱.表名稱被*.*代替,表示賦予使用者操作伺服器上所有資料庫所有表的權限。

使用者位址可以是localhost,也可以是ip位址、機器名字、域名。也可以用’%'表示從任何位址連接配接。

'連接配接密碼'不能為空,否則建立失敗。

舉例:

mysql>grant select,insert,update,delete,create,drop on vtdc.employee to [email protected] identified by ‘123′;

給來自10.163.225.87的使用者joe配置設定可對資料庫vtdc的employee表進行select,insert,update,delete,create,drop等操作的權限,并設定密碼為123。

mysql>grant all privileges on vtdc.* to [email protected] identified by ‘123′;

給來自10.163.225.87的使用者joe配置設定可對資料庫vtdc所有表進行所有操作的權限,并設定密碼為123。

mysql>grant all privileges on *.* to [email protected] identified by ‘123′;

給來自10.163.225.87的使用者joe配置設定可對所有資料庫的所有表進行所有操作的權限,并設定密碼為123。

mysql>grant all privileges on *.* to joe@localhost identified by ‘123′;

給本機使用者joe配置設定可對所有資料庫的所有表進行所有操作的權限,并設定密碼為123。

1、登陸MySQL終端,直接運作如下指令

mysql>set password =password('123456');

mysql>flush privileges;

2、在MySQL庫user表中直接修改

mysql>use mysql;

mysql>update user set password=password('111111') where user='root';

3、在shell指令行裡修改MySQL使用者密碼

[root@bogon]# mysqladmin -u root password "666666";

4.在MySQL終端中使用GRANT語句修改

mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' IDENTIFIED BY '888888' WITH GRANT OPTION;

https://blog.csdn.net/wengyupeng/article/details/3290415

https://github.com/jaywcjlove/mysql-tutorial/blob/master/chapter2/2.3.md