SSH certificate support in SSH tunnel #14580
-
|
Hi Team, I am using an SSH certificate to access my servers. But there is no option to add SSH certificate, in SSH tunnel tab there is an option to add public key but it only accepts private key file to authenticate. On selecting the certificate file, I am getting an error: Can't initialize tunnel On terminal I am able to ssh using: ssh -i id-cert.pub username@servername It would be really nice to have the feature embedded out-of-the-box. Is there any workaround for this, as I am stuck. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
|
thanks for suggestion |
Beta Was this translation helpful? Give feedback.
-
|
Really a great feature to have. This will provide much more security to the SSH tunnelling. @arghaya, thanks for sharing!! |
Beta Was this translation helpful? Give feedback.
-
|
I also could not find accurate solution from dbeaver, but following hack should help you solve the issue execute the command from terminal ssh -i id-cert.pub -fNL 3308:localhost:3307 username@server.com In the above command
So after that in Dbeaver you can configure using localhost and port used for tunnelling. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks @RajeshJangid works like a charm. |
Beta Was this translation helpful? Give feedback.
-
|
@RajeshJangid, you ROCK!! |
Beta Was this translation helpful? Give feedback.
I also could not find accurate solution from dbeaver, but following hack should help you solve the issue
execute the command from terminal
ssh -i id-cert.pub -fNL 3308:localhost:3307 username@server.com
In the above command
So after that in Dbeaver you can configure using localhost and port used for tunnelling.