navicate 遠端連線 資料庫

2021-08-08 17:56:24 字數 475 閱讀 2480

方法

一、本地登入mysql,更改 "mysql" 資料庫裡的 "user" 表裡的 "host" 項,將"localhost"改為"%"

#mysql -u root -proot

mysql>use mysql;

mysql>update user set host = '%' where user = 'root';

mysql>select host, user from user;

方法二、直接授權(推薦)

從任何主機上使用root使用者,密碼:youpassword(你的root密碼)連線到mysql伺服器:

# mysql -u root -proot 

mysql>grant all privileges on *.* to 'root'@'%' identified by 'youpassword' with grant option;

flush privileges

PL SQL遠端連線資料庫

關鍵的兩個步驟 往往我們會漏了第二個步驟 第一步 在本地安裝的oracle客戶端找到tnsnames.ora檔案 我的目錄是 f oracle product 10.2.0 client 1 network admin 然後新增如下 192.168.10.6 description address ...

java遠端連線資料庫

我在eclipse執行報的錯,沒報錯就不管了。null,message from server host 202.197.100.120 is not allowed toconnect to this mysql server 在伺服器 一 開啟 mysql 控制台,輸入 二 輸入 如果報錯 my...

plsql遠端連線資料庫

1.配置plsql的連線 可以理解找到乙個tnsnames.ora,然後這裡配置遠端資料庫的路徑 2.tnsnames.ora 可以在原來後的面追加 generated by oracle configuration tools.orcl2 description address list addr...