MYSQL建立使用者

2021-10-01 10:14:17 字數 2350 閱讀 4674

mysql建立使用者

如何在mysql中建立使用者和授予許可權

一. 建立使用者:

命令:create user 『username』@『host』 identified by 『password』;

例子: create user 『dog』@『localhost』 identified by 『123456』;

create user 'dog2'@'localhost' identified by '';
ps:username - 你將建立的使用者名稱,

host - 指定該使用者在哪個主機上可以登陸,此處的"localhost",是指該使用者只能在本地登入,不能在另外一台機器上遠端登入,如果想遠端登入的話,將"localhost"改為"%",表示在任何一台電腦上都可以登入;也可以指定某台機器可以遠端登入;

password - 該使用者的登陸密碼,密碼可以為空,如果為空則該使用者可以不需要密碼登陸伺服器。

二.授權:

命令:grant privileges on databasename.tablename to 『username』@『host』

ps: privileges - 使用者的操作許可權,如select , insert , update 等(詳細列表見該文最後面).如果要授予所的許可權則使用all.;databasename - 資料庫名,tablename-表名,如果要授予該使用者對所有資料庫和表的相應操作許可權則可用表示, 如.*.

例子: grant select, insert on mq.* to 『dog』@『localhost』;

三.建立使用者同時授權

mysql> grant all privileges on mq.* to test@localhost identified by 『1234』;

query ok, 0 rows affected, 1 warning (0.00 sec)

mysql> flush privileges;

query ok, 0 rows affected (0.01 sec)

ps:必須執行flush privileges;

四.設定與更改使用者密碼

命令:set password for 『username』@『host』 = password(『newpassword』);

例子: set password for 『dog2』@『localhost』 = password(「dog」);

五.撤銷使用者許可權

命令: revoke privilege on databasename.tablename from 『username』@『host』;

說明: privilege, databasename, tablename - 同授權部分.

例子: revoke select on mq.* from 'dog2'@'localhost';

ps: 假如你在給使用者』dog』@『localhost』'授權的時候是這樣的(或類似的):grant select on test.user to 『dog』@『localhost』, 則在使用revoke select on . from 『dog』@『localhost』;命令並不能撤銷該使用者對test資料庫中user表的select 操作.相反,如果授權使用的是grant select on . to 『dog』@『localhost』;則revoke select on test.user from 『dog』@『localhost』;命令也不能撤銷該使用者對test資料庫中user表的select 許可權.

具體資訊可以用命令show grants for 'dog'@'localhost'; 檢視.
六.刪除使用者

命令: drop user 『username』@『host』;

七.檢視使用者的授權

mysql> show grants for dog@localhost;

±--------------------------------------------+

| grants for dog@localhost |

±--------------------------------------------+

| grant usage on . to 『dog』@『localhost』 |

| grant insert onmq.* to 『dog』@『localhost』 |

±--------------------------------------------+

2 rows in set (0.00 sec)

ps:grant usage:mysql usage許可權就是空許可權,預設create user的許可權,只能連庫,啥也不能幹

mysql 建立使用者指令碼 Mysql使用者建立指令碼

我試圖自動化mysql使用者建立過程。我想到建立乙個包含mysql使用者建立語句的臨時檔案,那麼我會這樣稱呼 mysql u root proot 這裡是我的臨時檔案的內容 drop database if exists mytestdatabase create database mytestda...

mysql 建立使用者

mysql grant all privileges on to root identified by with grant option query ok,0 rows affected 0.02 sec 表示是所有的外部機器,如果指定某一台機,就將 改為相應的機器名 mysql grant al...

MYSQL 建立使用者

一,建立使用者 命令 create user username host identified by password 說明 username 你將建立的使用者名稱,host 指定該使用者在哪個主機上可以登陸,如果是本地使用者可用localhost,如果想讓該使用者可以從任意遠端主機登陸,可以使用萬...