mysql遠端連線

2021-10-17 08:11:45 字數 918 閱讀 3557

配置mysql遠端連線許可權:(8.0版本之後)建立賬戶、賦予許可權、生效

mysql -uroot -p

use mysql;

create user 『workzl』@』%』 identified by 『password』; //建立遠端登入賬戶

grant all privileges on . to 『workzl』@』%』;//登入賬戶賦許可權,』%'表示任何位址可訪問

flush privileges;//讓許可權生效

client does not support authentication protocol requested by server;

mysql8之前的版本中加密規則是mysql_native_password,而在mysql8之後,加密規則是caching_sha2_password,

需要把使用者密碼登入的加密規則還原成mysql_native_password這種加密方式:

alter user 『workzl』@』%'identified with mysql_native_password by 『password』;

上一步報錯:

access denied; you need (at least one of) the system_user privilege(s) for this operation;

需要給root使用者system_user許可權:

grant system_user on . to 『root』;

flush privileges;

再次連線問題解決(我這是阿里雲上安裝的mysql,還需要去控制台配置安全組,開啟3306埠)

mysql遠端連線設定 MySQL遠端連線設定

這只是乙個簡單mysql設定。但很多圖簡單,卻忽略了安全性。所以對設定中的細節和含義需要弄到清清楚楚才行。這只是乙個簡單mysql設定。但很多圖簡單,卻忽略了安全性。所以對設定中的細節和含義需要弄到清清楚楚才行。mysql遠端連線的設定問題 下面是步驟 1 登陸本地的mysql server mys...

mysql 遠端連線失敗 mysql 遠端連線失敗

一 mysql 禁止 ip 遠端連線 mysql 庫 user表中 host 為 localhost 修改為 允許所有 ip 連線 或者 新增一條資料 host 為允許連線的 ip 二 授權某個使用者可以遠端連線 以root為例 grant all privileges on to root ide...

mysql遠端連線條件 MySql 遠端連線的條件

1 首先看伺服器防火牆 引用 centos 7.0預設使用的是firewall作為防火牆,使用iptables必須重新設定一下 1 直接關閉防火牆 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.serv...