Basic steps to use Mysql SSH tunnel connection

Basic steps to use Mysql SSH tunnel connection

Preface

For security reasons, the root user of MySQL can only log in locally and does not have authorized access to the external network. At this time, you can connect to the MySQL database through the SSH tunnel. The following are the basic steps to configure a Mysql SSH tunnel connection.

Let's take a look at the detailed steps.

Deleting Remote Login

Log in to mysql:

 mysql -uroot -p

View the user's open access permissions:

select user, host from mysql.user;

Remove unnecessary access permissions, such as:

delete from mysql.user where user='root' and host='%';
flush privileges;

Query again to verify whether the deletion is successful.

Establishing a Tunnel

The server can be logged in by username and password or RSA key. It is recommended to use RAS key and place the local id_rsa.pub content in ~/.ssh/authorized_keys of the server. How to generate RSA key is not described here.

Open a separate window, modify the IP and port corresponding to the following command and execute it:

ssh -NCPf [email protected] -L 3388:127.0.0.1:3306

Parameter explanation:

  • C Use compression, which is optional and speeds up.
  • P Use a non-privileged port for outgoing connections.
  • f After SSH completes authentication and establishes port forwarding, it goes into the background.
  • N Do not execute the remote command. This parameter is useful when only forwarding ports are opened (supported by SSH V2)

[email protected] is the SSH username and IP address for logging into the MySQL server. -L 3388:127.0.0.1:3306 means opening a mapping from port 3388 on the local machine to port 127.0.0.1:3306 of the MySQL server. 127.0.0.1 can also be the intranet or extranet IP address of the server where MySQL is located.

Then, use the mysql tool to enter the corresponding username and password to log in. Note that when logging in, the host address selected is localhost or 127.0.0.1. At the same time, open the access rights of the corresponding IP in the MySQL database.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • How to use ssh tunnel to connect to mysql server
  • Solution to slow intranet ssh/mysql login
  • How to install MySQL via SSH on a CentOS VPS

<<:  An Uncommon Error and Solution for SQL Server Full Backup

>>:  Docker data management and network communication usage

Recommend

MySql Installer 8.0.18 Visual Installation Tutorial with Pictures and Text

Table of contents 1. MySQL 8.0.18 installation 2....

Detailed explanation of mysql user variables and set statement examples

Table of contents 1 Introduction to user variable...

How to optimize a website to increase access speed update

Recently, the company has begun to evaluate all s...

MySQL 5.7 mysql command line client usage command details

MySQL 5.7 MySQL command line client using command...

Basic learning tutorial of table tag in HTML

Table label composition The table in HTML is comp...

Six ways to reduce the size of Docker images

Since I started working on Vulhub in 2017, I have...

Implementation of Single Div drawing techniques in CSS

You can often see articles about CSS drawing, suc...

HTML image img tag_Powernode Java Academy

summary Project description format <img src=&q...

Sample code for implementing two-way authentication with Nginx+SSL

First create a directory cd /etc/nginx mkdir ssl ...

How to add Tomcat Server configuration to Eclipse

1. Window -> preferences to open the eclipse p...

Zabbix WEB monitoring implementation process diagram

Take zabbix's own WEB interface as an example...

Creation, constraints and deletion of foreign keys in MySQL

Preface After MySQL version 3.23.44, InnoDB engin...

Implementation of IP address configuration in Centos7.5

1. Before configuring the IP address, first use i...