說明:mysql有一個對外的訪問權限,默認條件下不容許遠程服務器訪問,只容許經過localhost或者127.0.0.1的方式本機訪問.
因此咱們在須要對數據進行遠程鏈接時,咱們須要打開數據庫的遠程鏈接權限:java
語法: grant [權限] on [數據庫名].[表名] to ['用戶名']@['web服務器的ip地址'] identified by ['密碼']; grant all on *.* to 'root'@'%' identified by 'root'; 或者指定IP地址 grant all on *.* to 'root'@'192.168.1.103' identified by 'root';
操做以下圖: mysql
檢查數據庫權限:
檢查mysql中的user表的權限信息. web
說明權限已經打開sql