1

LinuxサーバーのMYSQLに接続する必要があるWindowsのMYSQLがありますが、WindowsにMYSQLがなくても、LinuxサーバーのMYSQLに接続する方法があるかどうかを知りたいです。

4

3 に答える 3

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
于 2012-07-11T10:23:58.050 に答える
0

パテソフトが使えます。ダウンロードするリンクはこちらです。

于 2012-07-11T04:32:27.260 に答える
0

mysql の接続には putty を使用できます。接続文字列は次のようになります

mysql -uDBUSER -pDBPASSWORD データベース名 -hHOST-IP

または、navicat または sql yog ソフトウェアを使用して、Linux システム上の mysql をリモートで接続することもできます。

于 2012-07-11T07:56:34.503 に答える