MySQL建立使用者授權訪問

zhuzhenyu307發表於2014-07-02

mysql -u root -p

#輸入密碼

建立一個使用者名稱為zzy,密碼為zzy的mysql普通使用者,並且授權該使用者只有對zzy這個資料庫有操作許可權.

1.1第一種方式:

use mysql;

insert into user (user,host,password) values ('zzy','localhost',password('zzy'));

#授權

grant all privileges on zzy.* to zzy;

#重新整理許可權表

flush privileges;

1.2第二種方式:

create user zzy@'localhost'  identified by 'zzy'

#授權

grant all privileges on zzy.* to zzy;

#flush privileges;



相關文章