MySQL資料庫新增使用者配置許可權

2022-03-28 09:38:00 字數 591 閱讀 6980

今天為mysql增加了使用者在配置許可權的時候出現了問題,問題得到了解決。我想應該記錄下來,希望可以幫到其他同學。

新增使用者以及配置許可權

新增使用者

mysql>insert into mysql.user(host,user,password)      value('192.168.1.206','www','123456');

配置許可權

mysql>grant select,update,insert,delete on *.* to [email protected] identified by '123456';

若為新增使用者新增許可權出現 error 1133 (42000): can』t find any matching row in the user table,需要重新整理授權列表

mysql>flush privaliges;

以上新增使用者,配置許可權還有另外一種方式

mysql>create user '[email protected]' identified by '123456';

mysql>grant all on *.* to '[email protected]';

**建設

mysql 8 0給資料庫新增使用者和賦權

使用mysql 資料庫 use mysql 為mysql建立使用者 case dev 密碼為 pass123 create user case dev identified by pass123 檢視下使用者case dev的許可權 select from user where user case ...

MySQL 新增使用者及分配使用者資料庫訪問許可權

0登入mysql mysql u root 1新增新使用者允許外網 ip 訪問 create user pssbase identified by pssbase 2重新整理授權 flush privileges 3為使用者建立資料庫 create database pssbase default ...

mysql資料庫新增使用者與使用者許可權

mysql資料庫新增使用者及分配許可權的方法。1,建立使用者並分配許可權 insert into mysql.user host,user,password values localhost phplamp password 1234 建立使用者 grant all privileges on db...