韩国三级巜双乳紧扣的肉体市场,韩国三级《偷妻》,韩国三级《老师的滋味》,韩国三级巜双乳紧扣的肉体市场,韩国三级中文字幕HD久久精品,欧美日韩国产成人高清视频

  • IDC銷售:020-66849165/66849090/66849088
  • 云服務(wù)銷售:020-66849108/9091 | 客服(備案,域名,虛機(jī),郵箱):020-66849000-2

登錄 | 會(huì)員注冊(cè) | 控制面板 | 幫助中心 | 購物車 | 舉報(bào)中心

? ? 域名活動(dòng)
幫助中心FAQ

 

# 1. 創(chuàng)建用戶

 

命令:

create user 'username'@'host' identified by 'password';

 

說明:

username:你將創(chuàng)建的用戶名

host:指定該用戶在哪個(gè)主機(jī)上可以登陸,如果是本地用戶可用localhost,如果想讓該用戶可以從任意遠(yuǎn)程主機(jī)登陸,可以使用通配符%,但不包括localhost

password:該用戶的登陸密碼,密碼可以為空,如果為空則該用戶可以不需要密碼登陸服務(wù)器

 

```

# 例如:

create user 'user1'@'localhost' identified by 'user1';

```

 

# 2. 用戶授權(quán)或更新權(quán)限

 

命令:

grant privileges on databasename.tablename to 'username'@'host';

flush privileges;

 

說明:

privileges:用戶的操作權(quán)限,如select,INSERT,UPDATE等,如果要授予所的權(quán)限則使用ALL

databasename:數(shù)據(jù)庫名

tablename:表名,如果要授予該用戶對(duì)所有數(shù)據(jù)庫和表的相應(yīng)操作權(quán)限則可用*表示,如*.*

 

```

# 例如:

grant all on *.*  to 'user1'@'localhost';

flush privileges;

```

 

注意:

用以上命令授權(quán)的用戶不能給其它用戶授權(quán),如果想讓該用戶可以授權(quán),用以下命令:

grant privileges on databasename.tablename to 'username'@'host' with grant option;

 

# 3. 設(shè)置或更改用戶密碼

 

命令:

set password for 'username'@'host' = password('newpassword');

 

```

# 例如:

set password for 'user1'@'localhost' =password('123');

```

 

# 4. 撤銷用戶權(quán)限

 

命令:

revoke privilege on databasename.tablename from 'username'@'host';

flush privileges;

 

說明:

privilege, databasename, tablename:同授權(quán)部分

 

```

# 例如:

revoke privilege on *.* from 'user1'@'localhost';

```

 

注意:

假如在給用戶'user1'@'localhost'授權(quán)的時(shí)候是這樣的(或類似的):grant select on test.user to 'user1'@'localhost',

則在使用revoke select on *.* from 'user1'@'localhost';命令并不能撤銷該用戶對(duì)test數(shù)據(jù)庫中user表的select 操作。

相反,如果授權(quán)使用的是:grant select on *.* to 'user1'@'localhost';

revoke select on test.user from 'user1'@'localhost';命令也不能撤銷該用戶對(duì)test數(shù)據(jù)庫中user表的select權(quán)限。

具體信息可以用命令show grants for 'user1'@'localhost'; 查看。

 

# 5. 查看用戶權(quán)限

 

命令:

show grants 'username'@'host';

select * from mysql.user where User='username'G

 

```

# 例如:

select * from mysql.user where User='user1'G

show grants 'user1'@'localhost';

```

 

# 6. 刪除用戶

 

命令:

drop user 'username'@'host';

 

```

# 例如:

drop user 'user1'@'localhost';

```

林周县| 达拉特旗| 介休市| 普格县| 屏东市| 喀什市| 方正县| 台北市| 蚌埠市| 林西县| 常德市| 闻喜县| 湘阴县| 金湖县| 中山市| 泗水县| 宜阳县| 景德镇市| 清新县| 宣武区| 正安县| 乌拉特后旗| 尉犁县| 稻城县| 温宿县| 黔东| 耿马| 镇康县| 三都| 陆河县| 无极县| 黎城县| 漳州市| 保康县| 菏泽市| 拉孜县| 阳信县| 时尚| 岑巩县| 普兰县| 咸宁市|