MySQL執行個體講解:添加賬戶、授予許可權、刪除使用者

來源:互聯網
上載者:User

1.添加賬戶:

# 建立一個密碼為123456的testuser賬戶# 若不寫【identified by '123456'】則建立一個密碼為空白的testuser賬戶mysql> create user testuser identified by '123456';# 重新整理許可權變更mysql> flush privileges;

2.授予許可權

# 為testuser賬戶授予本地訪問所有資料庫的所有許可權mysql> grant all privileges on *.* to 'testuser'@'localhost' identified by '123456';mysql> flush privileges;

命令格式:

grant privilegesCode on dbName.tableName to username@host identified by "password";

privilegesCode表示授與權限類型,常用的有以下幾種類型:
all privileges:所有許可權;
select:讀取許可權;
delete:刪除許可權;
update:更新許可權;
create:建立許可權;
drop:刪除資料庫、資料表許可權。

完整的權限類別型如下:

           Select_priv: Y           Insert_priv: Y           Update_priv: Y           Delete_priv: Y           Create_priv: Y             Drop_priv: Y           Reload_priv: Y         Shutdown_priv: Y          Process_priv: Y             File_priv: Y            Grant_priv: Y       References_priv: Y            Index_priv: Y            Alter_priv: Y          Show_db_priv: Y            Super_priv: Y Create_tmp_table_priv: Y      Lock_tables_priv: Y          Execute_priv: Y       Repl_slave_priv: Y      Repl_client_priv: Y      Create_view_priv: Y        Show_view_priv: Y   Create_routine_priv: Y    Alter_routine_priv: Y      Create_user_priv: Y            Event_priv: Y          Trigger_priv: YCreate_tablespace_priv: Y

詳細介紹可閱讀MySQL官方文檔

dbName.tableName表示授予許可權的具體庫或表,常用的有以下幾種選項:

*.*:授予該資料庫伺服器所有資料庫的所有表的許可權;
dbName.*:授予dbName資料庫所有表的許可權;
dbName.dbTable:授予資料庫dbName中dbTable表的許可權。

username@host表示授予的使用者以及允許該使用者登入的IP地址。其中host有以下幾種類型:

localhost:只允許該使用者在本地登入,不能遠程登入。
%:允許在除本機之外的任何一台機器遠程登入。
192.168.1.11:具體的IP表示只允許該使用者從特定IP登入。

identified by "password":表示存取權限使用者的密碼,如果無此語句,則預設密碼為空白。

查看許可權授予的命令:

mysql> show grants for 'testuser';

3.刪除使用者

# 將剛才建立的本地存取權限的testuser使用者刪除drop user testuser@'localhost';
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.