MySQL建立新使用者

2021-10-20 10:44:04 字數 380 閱讀 5040

1、登入root使用者mysql -u root -p 輸入密碼

2、建立資料庫 create database 資料庫名;

3、建立使用者 create user 『資料庫名』@『localhost』 identified by 『密碼』;

4、授權使用者 grant all privileges on 資料庫名.* to 『資料庫名』@『localhost』;

5、重新整理許可權 flush privileges;

5.1、查詢使用者資訊 select host,user,authentication_string,plugin from mysql.user;

6、刪除user使用者

drop user 『username』@『host』;格式命令,

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...

mysql建立 mysql建立新使用者

1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,password values localhost test password 1234 這樣就建立了乙個名為 test 密碼...