Creating Tunnel From Windows Using PuTTY

Creating Tunnel From Windows Using PuTTY

What is PuTTY?

PuTTY is an SSH and telnet client, developed originally by Simon Tatham for the Windows platform. PuTTY is open source software that is available with source code and is developed and supported by a group of volunteers.

Please find the below steps to create tunnel from windows:
  1. Please open PuTTY application and enter the server hostname or IP address.
Screenshot from 2016-08-24 05:55:36 2. Now, we need to setup the tunnel. Choose Connection -> SSH -> Tunnels. In Source port box, enter 3306 and in Destination 127.0.0.1:3306. Click Add. If your mysql server uses another port, please enter as such. Screenshot from 2016-08-24 05:56:00 3. The forwarded port is listed now. Click Open. It will start SSH connection to remote server. You will need to enter username and password. Once you connect successfully, do not close the PuTTY window because it has the SSH Tunnel to the remote server. Screenshot from 2016-08-24 05:56:37 4. Open MySQL Workbench and enter the hostname as 127.0.0.1 and port 3306 Screenshot from 2016-08-24 05:56:54 5. Enter your password for MySql on the remote machine. Screenshot from 2016-08-24 05:57:10 6. Finally you will receive the confirmation message as given below. Screenshot from 2016-08-24 05:57:29
    • Related Articles

    • How to setup SSH keys using PuTTy Tool- Windows Os?

      About SSH keys: Use of SSH keys favors a very boosted form of security against the brute forces attacking a virtual private server. Use of passwords, independent of their complex nature is always vulnerable towards security threats. SSH keys provides ...
    • Creating SSH Tunnel From Linux or MacOS

      To create a ssh tunnel, Please follow the below steps: Use the following command to create a ssh tunnel. $ ssh -L 3306:127.0.0.1:3306 username@server.com username@server's password: We are creating SSH tunnel from local port 3306 from our computer to ...
    • Creating server disk image backup

      Creating a server template can prove to be an important feature to have and therefore we provide you with this option with a seamless interface using which you can create a template of your server with just one-click operation. Let's look at a couple ...