mysql建立使用者授權

2022-06-20 10:39:12 字數 423 閱讀 5084

伺服器上好多庫,為了不讓某使用者誤操作別人的資料庫,給他單獨建個使用者並授權。

insert into mysql.user(host,user,password, ssl_cipher, x509_issuer, x509_subject) values("192.168.1.2","test",password("123"), '', '', '');

flush privileges;

grant all privileges on test.* to [email protected] identified by '123';

怎麼讓他登入,不能讓他上sh,在他web上安裝個phpmyadmin,配置檔案加上$cfg['servers'][$i]['host'] = '192.168.1.2';

讓他用test 123 登陸就能操作這個test庫了。

Mysql建立使用者 授權

建立使用者命令 create user 使用者名稱 localhost identified by 密碼 create user 使用者名稱 192.168.1.101 idendified by 密碼 create user 使用者名稱 identified by 密碼 create user 使...

mysql 建立使用者 授權

b 1 建立使用者 b 可以在任何地方登陸 create user test identified by test123 或create user test identified by test123 在本地登陸 create user test localhost identified by te...

mysql建立使用者,授權

可以用一句語句實現 grant all on to 使用者名稱 identified by 密碼 然後需要刷一下 flush privileges insert into mysql.user host,user,password values localhost hbchen p assword ...