91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用SSH通道訪問MySQL的方法

發布時間:2020-05-21 15:33:35 來源:億速云 閱讀:282 作者:鴿子 欄目:MySQL數據庫

許多時候當要使用Mysql時,會遇到如下情況:

1. 信息比較重要,希望通信被加密。

2. 一些端口,比如3306端口,被路由器禁用。

對第一個問題的一個比較直接的解決辦法就是更改mysql的代碼,或者是使用一些證書,不過這種辦法顯然不是很簡單。

相關學習視頻教程推薦:mysql視頻教程

這里要介紹另外一種方法,就是利用SSH通道來連接遠程的Mysql,方法相當簡單。

一、建立SSH通道

只需要在本地鍵入如下命令:

ssh -fNg -L 3307:127.0.0.1:3306 myuser@remotehost.com
The command tells ssh to log in to remotehost.com as myuser, go into the background (-f) and not execute any remote command (-N), and set up port-forwarding (-L localport:localhost:remoteport ). In this case, we forward port 3307 on localhost to port 3306 on remotehost.com.

二、連接Mysql

現在,你就可以通過本地連接遠程的數據庫了,就像訪問本地的數據庫一樣。

mysql -h 127.0.0.1 -P 3307 -u dbuser -p db
The command tells the local MySQL client to connect to localhost port 3307 (which is forwarded via ssh to remotehost.com:3306). The exchange of data between client and server is now sent over the encrypted ssh connection.

或者用Mysql Query Brower來訪問Client的3307端口。

類似的,用PHP訪問:

<?php
$smysql = mysql_connect( "127.0.0.1:3307", "dbuser", "PASS" );
mysql_select_db( "db", $smysql );
?>
Making It A Daemon
A quick and dirty way to make sure the connection runs on startup and respawns on failure is to add it to /etc/inittab and have the init process (the, uh, kernel) keep it going.
Add the following to /etc/inittab on each client:
sm:345:respawn:/usr/bin/ssh -Ng -L 3307:127.0.0.1:3306 myuser@remotehost.com
And that should be all you need to do. Send init the HUP signal ( kill -HUP 1 ) to make it reload the configuration. To turn it off, comment out the line and HUP init again.

以上就是詳解如何通過SSH通道來訪問MySQL的詳細內容,更多請關注億速云其它相關文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

锦州市| 无锡市| 武强县| 山东| 周至县| 将乐县| 临安市| 临猗县| 宁强县| 梁山县| 永清县| 南木林县| 昂仁县| 西充县| 阿城市| 哈密市| 定远县| 都江堰市| 新宾| 准格尔旗| 夹江县| 黄陵县| 城步| 元朗区| 米泉市| 若羌县| 且末县| 普兰县| 宜宾县| 克山县| 长白| 南部县| 宜春市| 鹤壁市| 徐州市| 巴彦淖尔市| 读书| 怀仁县| 盐城市| 富民县| 巴林右旗|