DEV Community

Discussion on: SSH Tunneling via a Jump Host

Collapse
 
gaurang847 profile image
Gaurang

We've a similar setup at my workplace. And due to that, for the longest time, we've had to connect to the database and run commands over the terminal. As most database clients such as MySQL Workbench and Robo 3T don't support such a setup for connection.
Only recently has DBeaver added support for connecting to the server through a jump server.
One of my friends had suggested that I would need to set up an SSH tunnel between my machine to the jump server, jump server to application server and application server to database. So I tried to learn about it but most articles and examples I found online only showed a single level tunnel with no jumping.
So I was pretty lost.

I'm now able to successfully create a tunnel to the database. So thanks a ton!! :)
If possible, can you point me to more resources related to this?