I’ve long been a user of DBeaver which works so well across different OSes, so recently I wanted to set up the cloud version called cloudbeaver.
In the course of doing that, I had to generate SSH keys to be able to access remote databases via SSH.
Generate an SSH keypair
The standard way of generating SSH keys is to run this command.
> ssh-keygen -t rsa
This by default creates id_rsa
and id_rsa.pub
under <home directory>/.ssh
folder (both in Windows and Linux)