關於資料庫授權的問題,mysql

2021-07-24 07:13:26 字數 504 閱讀 4490

專案中別人的電腦連線我的本地,執行報錯:null, message from server: "host 'pc-20151208bfaq' is not allowed to connect

才想到還沒有給人家賦許可權,沒有權利訪問我的mysql.

1.首先:

cmd 進入

輸入密碼=/= 基本都會忘記0.0 1234 啥的。

show datebases;

use mysql;

select *from user;

看看幾個使用者

然後 grant all privileges on *.* to 'root'@'%' iddentified by 'root' with grant option;

flush privileges;

再看看改過來沒

select *from  user;

mysql資料庫授權

授權命令grant 語句的語法如下 grant privileges columns on what to user identifiedby password with grant option 對使用者授權 mysql grant rights on database.to user host ...

Mysql資料庫的grant授權

mysql 賦予使用者許可權命令的簡單格式可概括為 grant 許可權 on 資料庫物件 to 使用者 一 grant 普通資料使用者,查詢 插入 更新 刪除 資料庫中所有表資料的權利。grant select on testdb.to common user grant insert on tes...

mysql資料庫授權命令 題型

在資料庫伺服器192.168.4.50上做如下 1 修改資料庫管理員從本機登入的密碼為plj666,資料庫管理員使用新密碼從本機連線資料庫伺服器 mysql alter user root localhost identified by plj666 2 檢視當前登陸資料庫伺服器的使用者是誰 mys...