mysql下建立帳號並授予全部許可權

2021-08-30 04:19:01 字數 1022 閱讀 4530

create user 『kugou』@』%』 identified by 『kug0u@db』;

其中kugou為使用者。%:匹配所有主機,該地方還可以設定成『localhost』,代表只能本地訪問,例如root賬戶預設為『localhost『

kug0u@db為密碼。

grant select,insert,update,delete,create on [資料庫名稱].* to [使用者名稱];–使用者授權資料庫

*代表整個資料庫

mysql> grant select,insert,update,delete,create on sys.* to kugou;

mysql> grant select,insert,update,delete,create on performance_schema.* to kugou;

mysql> grant select,insert,update,delete,create on mysql.* to kugou;

information_schema.資料庫在建立使用者時就擁有的許可權。

mysql> flush privileges;

revoke all on . from kugou;–取消使用者所有資料庫(表)的所有許可權

delete from mysql.user where user=『kugou』;–刪除使用者

create user 『dst』@』%』 identified by 『dstyl!1』;

grant all privileges on . to 『dst』@』%'identified by 『dstyl!1』 with grant option; 可以給予全部許可權

create user 『dsttest』@』%』 identified by 『dstt1!t』;

grant select on . to 『dsttest』@』%'identified by 'dstt1!t』with grant option;

use mysql;

show grants for dsttest;檢視帳號許可權

linux mysql 建立使用者並授予許可權

1.新建使用者 登入mysql mysql u root p 密碼 建立使用者 mysql insert into mysql.user host,user,password values localhost lwd password lwd 重新整理系統許可權表 mysql flush privi...

oracle建立表空間並授予使用者許可權

注意 每條語語分開執行,結尾必須用分號 建立空間 create tablespace test datafile c oracle oradata orcl9 test.dbf size 50m default storage initial 500k next 500k minextents 1 ...

如何在MySQL中建立新使用者並授予許可權

mysql是一種開源資料庫管理軟體,可幫助使用者儲存,組織和以後檢索資料。它有多種選項可以為 和資料庫中的特定使用者授予細微差別的許可權 本教程將簡要介紹一些眾多選項。在本教程中,將突出顯示使用者需要輸入或自定義的所有行!其餘的應該主要是複製和可接受的。在mysql教程的第1部分中,我們以root使...