配置Window10 遠端連線虛擬機器上的資料庫,(MySQL,redis)

來源:互聯網
上載者:User

標籤:連接埠   status   ice   jdbc   stat   star   sql   sel   127.0.0.1   

/**
* 注意MySQL 預設是本機串連,如果要改成區域網路訪問,要修改一下設定 。 報錯為(Communications link failure
* 1、在伺服器上命令列輸入 $ :vim /etc/mysql/mysql.conf.d/mysqld.cnf
* 2、找到bind-address = 127.0.0.1 這一行  前面加上#;
* 3重啟mysql 服務 :/etc/init.d/mysql restart (service mysql restart)
*/

String url = "jdbc:mysql://192.168.11.130:3306/JDBC_Test?useSSL=false";
String user = "root";
String password = "123456";
/**
* 用telnet 串連一下主機IP 3306 (is not allowed to connect to this MySQL server
* 原因:你的帳號不允許從遠程登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,
* 更改 "mysql" 資料庫裡的 "user" 表裡的 "host" 項,從"localhost"改稱"%"

   #mysql -u root -p     Enter password:      ……     mysql>

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

   mysql>select host, user from user;


*
* +-----------+------------------+
* | host | user |
* +-----------+------------------+
*| % | root |
*| localhost | debian-sys-maint |
*| localhost | mysql.session |
*| localhost | mysql.sys |
*+-----------+------------------+
*tips : 注意 這個時候要儲存退出 (flush privileges;)
*然後是重新啟動mysql (/etc/init.d/mysql restart / service mysql restart)
*
*/


//以上這個是要在伺服器上做的修改

/**
* 這個時候再串連mysql 如果還是不成功則會報伺服器拒絕串連。報錯為
* (message from server: "Host ‘192.168.11.1‘ is not allowed to connect to this MySQL server")
* 或者是直接連接成功。
* 這個時候我們要去開放伺服器的3306 介面:(注意一定要開啟防火牆,然後開放3306連接埠)
* 1、防火牆開啟3306 連接埠 (sudo ufw allow 3306)
* 2、開啟防火牆查看狀態:(a、sudo ufw enable b、sudo ufw default deny)
* 3、查看防火牆狀態 (sudo ufw status)
* OR 直接查看連接埠狀態 (show global variables like ‘port‘;)
*
*/

 

Tips(技巧: 可以先開啟Window 10 的telent

在控制台處>程式>(下拉頁面到最後)程式和功能>左邊的啟用和關閉Windows功能>開啟telent服務)

然後(Win+ R 鍵) 可以用telent 方式先試下能不能拼通伺服器連接埠。

配置Window10 遠端連線虛擬機器上的資料庫,(MySQL,redis)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.