mysql新增使用者以及新增資料庫和授權

2021-08-28 01:43:35 字數 1057 閱讀 8298

mysql

中新增使用者,新建

資料庫,使用者授權

1.新建使用者

@>mysql -u root -p

@>密碼

mysql> insert into mysql.user(host,user,password) values("

localhost

","healthyuser",password("admin"));

這樣就建立了乙個名為:healthyuser  密碼為:admin的使用者。

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

mysql>exit;

@>mysql -u test -p

@>輸入密碼

mysql>登入成功

2.為使用者授權

授權格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"; 

@>mysql -u root -p

@>密碼

mysql>create database healthy;

mysql>grant all privileges on healthy.* to healthyuser@localhost identified by 'admin';

mysql>flush privileges;//重新整理系統許可權表

格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"; 

mysql>grant select,update on healthy.* to healthyuser@localhost identified by 'admin';

mysql>flush privileges; //重新整理系統許可權表

mysql>grant select,delete,update,create,drop on *.* to healthyuser

@"%" identified by "admin";

mysql新增資料庫新增使用者並授權使用者

建立資料庫 create database basename 建立使用者 create user username 訪問限制 identified by password 授權使用者 grant all privileges on 資料庫名稱.表名稱 to username 訪問限制 重新整理使用者...

mysql2 新增資料

year yyyy 1901 2155 time hh mm ss 838 59 59 838 59 59 date yyyy mm dd 1000 01 01 9999 12 3 datetime yyyy mm dd hh mm ss 1000 01 01 00 00 00 9999 12 31...

mysql使用者新增 MySQL使用者新增

我的是ubuntu 12.04。發現在mysql中經常出現新增使用者之後,要麼只能本地登陸,要麼只能遠端登陸的蛋疼的情況。這裡記錄一下是如何操作的。建立使用者 create user username identified by password 如果想要讓這個使用者即可以本地登陸,也可以遠端登 我...