我有一個MYSQL在Windows需要與Linux服務器上的MYSQL連接。但我想知道是否有任何方式來連接MYSQL在Linux服務器,而無需MYSQL在窗口中。我如何通過Windows機器連接到Linux服務器的mysql數據庫
1
A
回答
0
您可以使用膩子軟件。這裏是link to download.
0
你可以使用putty連接mysql。 連接字符串會喜歡這個
MySQL的-uDBUSER -pDBPASSWORD DBNAME -hHOST-IP
或者你也可以使用的Navicat或SQL瑜珈軟件在遠程Linux系統上連接mysql。
3
Follow the following instructions:
1. Open Terminal and type in : sudo apt-get install putty
2. Click Y on subsequent messages that appear and let the installation complete.
To use Putty, go to Menu > Internet > Putty SSH client
To connect to a remote server that supports ssh login , enter the host name or the IP address of the remote host, in case you need to frequently need to login to this server , save the session by naming it something nice.
If the connection is initiated for the first time or if the server hardware configuration has changed, you may see the message. This is to ensure that you are logging in only to the trusted server that you know and not something else.Accept that.
Finally, enter user name and password to login to the server remotely, if all goes well you will see the terminal on the remote end.
connect to mysql :
type mysql -u username -p password
相關問題
- 1. 通過服務器連接到MySQL數據庫
- 2. 如何通過IP連接到服務器上的數據庫
- 3. 你能通過windows連接到Linux上的MySQL數據庫嗎
- 4. 如何連接到不同服務器的mysql數據庫?
- 5. 如何管理的Perl數據庫連接到MySQL服務器
- 6. 如何將android連接到MySql數據庫服務器?
- 7. 如何連接到我的託管服務器的數據庫?
- 8. 解析服務器通過SSL連接到遠程數據庫
- 9. 通過RMySQL連接到sequel pro數據庫遠程服務器
- 10. 連接到Linux服務器
- 11. 從Windows連接到MySQL服務器到Debian Linux
- 12. 多臺計算機的MySQL服務器數據庫連接
- 13. 如何通過ssh將mysql數據庫部署到服務器
- 14. 隨機連接錯誤無法連接到mysql數據庫服務器10060
- 15. 直接連接到SQL數據庫或通過客戶端 - 服務器服務
- 16. 未能通過Ubuntu的服務器連接到遠程MySQL數據庫
- 17. JDBC連接到服務器數據庫
- 18. 連接到數據庫服務器
- 19. 連接到數據庫服務器端
- 20. 在windows服務器連接mysql數據庫與c#程序
- 21. 是否有可能通過Windows中的Visual Studio連接到遠程Linux機器上的MySQL數據庫
- 22. 如何通過JAVA連接服務器到打印機
- 23. android應用程序通過mysql數據庫連接到本地服務器?
- 24. php mysql_connect():如何通過SSH隧道連接到MySQL服務器
- 25. 如何通過Android連接到遠程MySQL服務器Applicaton
- 26. 如何查看機器是否嘗試連接到我的(linux)服務器?
- 27. 通過Squid代理服務器繞過MySQL數據庫的遠程連接
- 28. pgadmin連接到Linux服務器 - 數據庫
- 29. 無法通過Linux上的套接字連接到本地MySQL服務器
- 30. 如何使用toad連接到Linux服務器上的MySQl db?
如果兩臺機器位於同一網絡上,則可以連接到MySQL服務器。 – Blender 2012-07-11 04:28:52