前言:mysql建立使用者的方法分成三種:insert user表的方法、create user的方法、grant的方法。
賬號的組成方式:使用者名稱+主機(所以可以出現重複的使用者名稱,跟其他的資料庫不一樣)
使用者名稱:16字元以內.
指令碼:create user 『username』@』host』 [identified by 『password』] 其中密碼是可選項;
例子:
create
user
'john'@'192.168.189.71' identified by
"123";
create
user
'john'@'192.168.189.%' identified by
"123";
create
user
'john'@' %' ;
說明:該方法建立出來的使用者只有連線資料庫的許可權,需要後續繼續授權;
個人習慣一般用這種方法進行建立使用者,當資料庫存在使用者的時候grant會對使用者進行授權,但當資料庫不存在該使用者的時候,就會建立相應的使用者並進行授權。(說明上面那步是多餘的)
指令碼:
grant
on[object] [identified by
'password']
[with
grant
option];
max_queries_per_hour count
max_updates_per_hour count
max_connections_per_hour count
max_user_connections count
說明:priv代表許可權select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file等14個許可權
例子:
mysql>grant select,insert,update,delete,create,drop on test.hr to [email protected] identified by
'123';
說明:給主機為192.168.10.1的使用者john分配可對資料庫test的hr表進行select,insert,update,delete,create,drop等操作的許可權,並設定口令為123。
mysql>grant all privileges on test.
.10.1 identified by
'123';
說明:給主機為192.168.10.1的使用者john分配可對資料庫test所有表進行所有操作的許可權,並設定口令為123。
mysql>grant all privileges on*.
.10.1 identified by
'123';
說明:給主機為192.168.10.1的使用者john分配可對所有資料庫的所有表進行所有操作的許可權,並設定口令為123。
mysql>grant all privileges on*.
*to john@localhost identified by
'123';
說明:使用者john分配可對所有資料庫的所有表進行所有操作的許可權,並設定口令為123。
因為資料庫的使用者資訊都是儲存在mysql.user這張表的,所以直接對該錶進行插入語句,即可完成使用者的建立;
mysql> insert into user (host,user,password) values ('%','john',password('123'));
mysql>flush privileges;
總結:雖然建立使用者的方法有三種,個人還是傾向於第二種方法,一步到位,簡單明瞭;
其他的兩種方法只是有助於理解資料庫的原理而已;
mysql使用者新增 MySQL使用者新增
我的是ubuntu 12.04。發現在mysql中經常出現新增使用者之後,要麼只能本地登陸,要麼只能遠端登陸的蛋疼的情況。這裡記錄一下是如何操作的。建立使用者 create user username identified by password 如果想要讓這個使用者即可以本地登陸,也可以遠端登 我...
mysql使用者新增 mysql新增使用者
mysql新增使用者 mysql新增使用者方法 建立資料庫gamesp create database gamesp 新增使用者 grant all on 資料庫名.to 使用者 名 localhost identified by 密碼 grant all on gamesp.to newuser ...
mysql新增 mysql新增使用者
增加新使用者 格式 grant select on 資料庫.to 使用者名稱 登入主機 identified by 密碼 例1 增加乙個使用者test1密碼為abc,讓他可以在任何主機上登入,並對所有資料庫有查詢 插入 修改 刪除的許可權。首先用以root使用者連入mysql,然後鍵入以下命令 gr...