我如何通过Windows机器连接到Linux服务器的mysql数据库

我如何通过Windows机器连接到Linux服务器的mysql数据库

问题描述:

我有一个MYSQL在Windows需要与Linux服务器上的MYSQL连接。但我想知道是否有任何方式来连接MYSQL在Linux服务器,而无需MYSQL在窗口中。我如何通过Windows机器连接到Linux服务器的mysql数据库

+0

如果两台机器位于同一网络上,则可以连接到MySQL服务器。 – Blender 2012-07-11 04:28:52

您可以使用腻子软件。这里是link to download.

你可以使用putty连接mysql。 连接字符串会喜欢这个

MySQL的-uDBUSER -pDBPASSWORD DBNAME -hHOST-IP

或者你也可以使用的Navicat或SQL瑜珈软件在远程Linux系统上连接mysql。

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