Tag: ssh
-
Python code for connecting to remote MySQL database using SSH
A working code is given below: Login to remote database and mapping port to host
-
Accessing MySQL database through a SSH Tunnel
A SSH tunnel links a local port to a port on a remote host. Communication between local and remote host is passed through SSH Tunnel to the remote port. The added benefit of this setup is that the communications between your local machine and the remote host is encrypted by the SSH connection. In this…