需要登入服務端增加遠端登入的許可權。
5.x版本
1、cd到mysql安裝的bin目錄下面, 用命令mysql -u root -p 登入到mysql上面。
2、然後用use mysql; 用select user, host from user; 檢視當前mysql有哪些使用者登入的許可權。 3、
將root的localhost修改為%
update user set host = 』%』 where user = 』root』;
4、修改許可權
grant all on *.* to 'root'@'%' identified by 'root使用者的密碼' with grant option;
flush privileges;
ps: mysql8.0執行命令不相同
8.0版本
create
user
'root'@'%'
identified
by'你的密碼';
grant
allon *.* to
'root'@'%';
alter
user
'root'@'%'
identified
with mysql_native_password by
'你的密碼';
flush
privileges;
參考: 1、
2、
mysql遠端連線設定 MySQL遠端連線設定
這只是乙個簡單mysql設定。但很多圖簡單,卻忽略了安全性。所以對設定中的細節和含義需要弄到清清楚楚才行。這只是乙個簡單mysql設定。但很多圖簡單,卻忽略了安全性。所以對設定中的細節和含義需要弄到清清楚楚才行。mysql遠端連線的設定問題 下面是步驟 1 登陸本地的mysql server mys...
mysql 設定遠端連線
授權法 grant select,insert,update,delete,create,drop on tablename.to username localhost identified by password 注意 tablename 你自己資料庫的名字,username 連線庫使用者名稱,l...
mysql設定遠端連線
1,開啟mysql遠端連線 1,獲取root許可權 sudo i 2,cd到配置檔案所在路徑 cd etc mysql mysql.conf.d 3,vi mysqld.cnf bind address 127.0.0.1 瀏覽模式 a 插入模式 esc 瀏覽模式 shift 命令列模式 wq 儲存...