mysql筆記2

1、操做環境

centos7,mariadbmysql

2、具體步驟

mysql> grant 權限1,權限2,…權限n on 數據庫名稱.表名稱 to 用戶名@用戶地址 identified by ‘鏈接口令’;sql

權限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地址、機器名字、域名。也能夠用’%'表示從任何地址鏈接。
‘鏈接口令’不能爲空,不然建立失敗。shell

例子

shellgrant all privileges on *.* to root@localhost identified by '123';

flush privileges;

flush privileges;表示執行grant指令後,執行flush privileges指令表示生效。數據庫

相關文章
相關標籤/搜索