paint-brush
How I Connected MySQL Shell Over SSHby@sstroz
336 reads
336 reads

How I Connected MySQL Shell Over SSH

by Scott StrozJanuary 17th, 2023
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

I recently needed to connect to a MySQL database on a Compute Instance in OCI. I wanted to use MySQL Shell but realized I needed to connect to the database using SSH. Fortunately, there is a way to tell MySQL Shell to connect using SSH.
featured image - How I Connected MySQL Shell Over SSH
Scott Stroz HackerNoon profile picture


I am a big fan of MySQL Shell. Until recently, I had only used MySQL Shell to connect to a local instance of MySQL running on my development machine.


I recently needed to connect to a MySQL database on a Compute Instance in OCI. I wanted to use MySQL Shell but realized I needed to connect to the database using SSH. Fortunately, there is a way to tell MySQL Shell to connect using SSH.


Note: This post assumes you already have SSH access set up for your remote server using a private key.


First, open MySQL Shell by running this command from a command prompt:


mysqlsh


This will start MySQL Shell in JS mode. You should see something similar to the image below.


Now that we are in Js mode of MySQL Shell, we use the shell.connect() command to connect to a MySQL server tunneled through an SSH connection.


shell.connect({uri : "mysql://{user}:{password}[email protected]:3306", ssh : "{ssh user}@{remote server}:22", "ssh-identity-file":"{absolute path to SSH key}" })


Let’s break down the different bits of information we are using.


  • {user} - The MySQL user we want to connect to our server with
  • {password} - The password for the above user. We can omit this, and we will be prompted to enter the password.
  • {ssh user} - The user we want to connect to SSH with.
  • {remote server} - The server IP or domain address for our remote server.
  • {absolute path to SSH key} - The absolute path to our SSH private key file.


Note: If you are on Windows, you will need to use a forward slash (/) as your path delimiter instead of a backslash (\). For example:


C:/Users/Dan/.ssh/my-ssh-key


Once we run the shell.connect(), you will see a message that we are connected.


You can see that we are using a Classic Session. This is because we specified port 3306 in our connection string. For this connection, we are not using the X Protocol, which means we will not be able to interact with a MySQL Document Store with this connection. If you want to use the X Protocol, which uses port 33060, you may need to open up ports on your server’s firewall.


Also, note that we are still in JS mode. To switch to SQL mode, enter the following command:


\sql


We will then see this prompt:

Now that we are in SQL mode, we can run SQL commands against the remote database.


Once we are done with our session, we can disconnect from MySQL Shell and close the SSH connection. To do this, we run the following command:


\quit


We can now see that our connection is closed.


As you can see, using MySQL Shell over a secured connection using SSH is not that difficult.


Also published here.