分為以下三步:建立、賦予許可權、重新整理許可權
1、建立使用者
只能本機訪問:『localhost』
create user 『test』@『localhost』 identified by 『123456』;
能其他電腦遠端訪問:』%』
create user 『test』@』%』 identified by 『123456』;
2、賦權能訪問所有資料庫 .
grant all privileges on . to 『test』@『localhost』
賦權能訪問指定資料庫 db.*
grant all privileges on db.* to 『test』@『localhost』
3、重新整理許可權
flush privileges
注意:1、使用者名稱、密碼、@後面的主機都要使用英文符號:』』
2、『localhost』表示只能本機訪問(127.0.0.1),要使建立的使用者在其他電腦訪問mysql伺服器,則將』localhost』改為』%』.
mysql5 7新增新使用者
新增新使用者 允許本地 ip 訪問 localhsot 127.0.0.1 create user test localhost identified by 123456 允許外網 ip 訪問 create user test identified by 123456 重新整理許可權 flush p...
Mysql建立新使用者
1.建立使用者 語法 create user username host identified by password 例子 create user dog localhost identified by 123456 create user pig 192.168.1.101 idendified...
Mysql建立新使用者
1.create user 語法 create user username host identified by password 例子 create user dog localhost identified by 123456 create user pig 192.168.1.101 iden...