Unable to create a proper PEM for Redis Desktop Manager

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite
1












On Ubuntu, I have a problem to establish a connection to redis server using SSH tunnel and SSH key with Redis Desktop Manager (RDM).



What are the symptoms?



  • I can connect to the server where redis is running using "plain" ssh and my id_rsa,

  • other utilities which use either the SSH agent or keys in .ssh can connect to this server and create tunnels (e.g. DB apps),

  • I can connect with RDM to redis servers using SSH tunnel and password (so the question is not a duplicate of Unable to establish an SSH tunnel using Redis Desktop Manager); but this is not a perfect solutions, because I would rather use private/public keys authorization,

  • I cannot convert keys in .ssh to a working PEM format required by RDM: any PEM files I've generated using different methods I googled are rejected by RDM with a message Connection: Disconnect on error: SSH Connection error(Authentication Error): Unable to extract public key from private key file: Unable to open private key file,

  • I tried entering either a path to id_rsa (~/.ssh/id_rsa) or just a path to a directory where my private key is stored (~/.ssh).

So, does anyone have an idea how to properly convert my SSH keys to a PEM format RDM needs and accepts?










share|improve this question





















  • Can openssl read the private key? Please do not post the results, but run the command openssl pkey -in ~/.ssh/my_key.pem -text .... And what format does the key say it's in... Do post this result grep BEGIN ~/.ssh/my_key.pem
    – RubberStamp
    Dec 2 at 12:57










  • yes, openssl can read the file, grep returns -----BEGIN RSA PRIVATE KEY-----
    – jacek.ciach
    Dec 3 at 22:59










  • I'd like to add, that I tried to put both public and private key into the same file. I did not work as well.
    – jacek.ciach
    Dec 3 at 23:00














up vote
1
down vote

favorite
1












On Ubuntu, I have a problem to establish a connection to redis server using SSH tunnel and SSH key with Redis Desktop Manager (RDM).



What are the symptoms?



  • I can connect to the server where redis is running using "plain" ssh and my id_rsa,

  • other utilities which use either the SSH agent or keys in .ssh can connect to this server and create tunnels (e.g. DB apps),

  • I can connect with RDM to redis servers using SSH tunnel and password (so the question is not a duplicate of Unable to establish an SSH tunnel using Redis Desktop Manager); but this is not a perfect solutions, because I would rather use private/public keys authorization,

  • I cannot convert keys in .ssh to a working PEM format required by RDM: any PEM files I've generated using different methods I googled are rejected by RDM with a message Connection: Disconnect on error: SSH Connection error(Authentication Error): Unable to extract public key from private key file: Unable to open private key file,

  • I tried entering either a path to id_rsa (~/.ssh/id_rsa) or just a path to a directory where my private key is stored (~/.ssh).

So, does anyone have an idea how to properly convert my SSH keys to a PEM format RDM needs and accepts?










share|improve this question





















  • Can openssl read the private key? Please do not post the results, but run the command openssl pkey -in ~/.ssh/my_key.pem -text .... And what format does the key say it's in... Do post this result grep BEGIN ~/.ssh/my_key.pem
    – RubberStamp
    Dec 2 at 12:57










  • yes, openssl can read the file, grep returns -----BEGIN RSA PRIVATE KEY-----
    – jacek.ciach
    Dec 3 at 22:59










  • I'd like to add, that I tried to put both public and private key into the same file. I did not work as well.
    – jacek.ciach
    Dec 3 at 23:00












up vote
1
down vote

favorite
1









up vote
1
down vote

favorite
1






1





On Ubuntu, I have a problem to establish a connection to redis server using SSH tunnel and SSH key with Redis Desktop Manager (RDM).



What are the symptoms?



  • I can connect to the server where redis is running using "plain" ssh and my id_rsa,

  • other utilities which use either the SSH agent or keys in .ssh can connect to this server and create tunnels (e.g. DB apps),

  • I can connect with RDM to redis servers using SSH tunnel and password (so the question is not a duplicate of Unable to establish an SSH tunnel using Redis Desktop Manager); but this is not a perfect solutions, because I would rather use private/public keys authorization,

  • I cannot convert keys in .ssh to a working PEM format required by RDM: any PEM files I've generated using different methods I googled are rejected by RDM with a message Connection: Disconnect on error: SSH Connection error(Authentication Error): Unable to extract public key from private key file: Unable to open private key file,

  • I tried entering either a path to id_rsa (~/.ssh/id_rsa) or just a path to a directory where my private key is stored (~/.ssh).

So, does anyone have an idea how to properly convert my SSH keys to a PEM format RDM needs and accepts?










share|improve this question













On Ubuntu, I have a problem to establish a connection to redis server using SSH tunnel and SSH key with Redis Desktop Manager (RDM).



What are the symptoms?



  • I can connect to the server where redis is running using "plain" ssh and my id_rsa,

  • other utilities which use either the SSH agent or keys in .ssh can connect to this server and create tunnels (e.g. DB apps),

  • I can connect with RDM to redis servers using SSH tunnel and password (so the question is not a duplicate of Unable to establish an SSH tunnel using Redis Desktop Manager); but this is not a perfect solutions, because I would rather use private/public keys authorization,

  • I cannot convert keys in .ssh to a working PEM format required by RDM: any PEM files I've generated using different methods I googled are rejected by RDM with a message Connection: Disconnect on error: SSH Connection error(Authentication Error): Unable to extract public key from private key file: Unable to open private key file,

  • I tried entering either a path to id_rsa (~/.ssh/id_rsa) or just a path to a directory where my private key is stored (~/.ssh).

So, does anyone have an idea how to properly convert my SSH keys to a PEM format RDM needs and accepts?







ubuntu ssh-tunneling redis






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 2 at 11:52









jacek.ciach

1437




1437











  • Can openssl read the private key? Please do not post the results, but run the command openssl pkey -in ~/.ssh/my_key.pem -text .... And what format does the key say it's in... Do post this result grep BEGIN ~/.ssh/my_key.pem
    – RubberStamp
    Dec 2 at 12:57










  • yes, openssl can read the file, grep returns -----BEGIN RSA PRIVATE KEY-----
    – jacek.ciach
    Dec 3 at 22:59










  • I'd like to add, that I tried to put both public and private key into the same file. I did not work as well.
    – jacek.ciach
    Dec 3 at 23:00
















  • Can openssl read the private key? Please do not post the results, but run the command openssl pkey -in ~/.ssh/my_key.pem -text .... And what format does the key say it's in... Do post this result grep BEGIN ~/.ssh/my_key.pem
    – RubberStamp
    Dec 2 at 12:57










  • yes, openssl can read the file, grep returns -----BEGIN RSA PRIVATE KEY-----
    – jacek.ciach
    Dec 3 at 22:59










  • I'd like to add, that I tried to put both public and private key into the same file. I did not work as well.
    – jacek.ciach
    Dec 3 at 23:00















Can openssl read the private key? Please do not post the results, but run the command openssl pkey -in ~/.ssh/my_key.pem -text .... And what format does the key say it's in... Do post this result grep BEGIN ~/.ssh/my_key.pem
– RubberStamp
Dec 2 at 12:57




Can openssl read the private key? Please do not post the results, but run the command openssl pkey -in ~/.ssh/my_key.pem -text .... And what format does the key say it's in... Do post this result grep BEGIN ~/.ssh/my_key.pem
– RubberStamp
Dec 2 at 12:57












yes, openssl can read the file, grep returns -----BEGIN RSA PRIVATE KEY-----
– jacek.ciach
Dec 3 at 22:59




yes, openssl can read the file, grep returns -----BEGIN RSA PRIVATE KEY-----
– jacek.ciach
Dec 3 at 22:59












I'd like to add, that I tried to put both public and private key into the same file. I did not work as well.
– jacek.ciach
Dec 3 at 23:00




I'd like to add, that I tried to put both public and private key into the same file. I did not work as well.
– jacek.ciach
Dec 3 at 23:00










1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










That's a known issue of RDM: https://github.com/uglide/RedisDesktopManager/issues/4230



Workaround: copy your id_rsa file into a directory without "." in its name...






share|improve this answer






















  • Please note, that the file must not be sym-linked. It has to be copied or hard-linked.
    – jacek.ciach
    Dec 5 at 15:33










Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f485475%2funable-to-create-a-proper-pem-for-redis-desktop-manager%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote



accepted










That's a known issue of RDM: https://github.com/uglide/RedisDesktopManager/issues/4230



Workaround: copy your id_rsa file into a directory without "." in its name...






share|improve this answer






















  • Please note, that the file must not be sym-linked. It has to be copied or hard-linked.
    – jacek.ciach
    Dec 5 at 15:33














up vote
1
down vote



accepted










That's a known issue of RDM: https://github.com/uglide/RedisDesktopManager/issues/4230



Workaround: copy your id_rsa file into a directory without "." in its name...






share|improve this answer






















  • Please note, that the file must not be sym-linked. It has to be copied or hard-linked.
    – jacek.ciach
    Dec 5 at 15:33












up vote
1
down vote



accepted







up vote
1
down vote



accepted






That's a known issue of RDM: https://github.com/uglide/RedisDesktopManager/issues/4230



Workaround: copy your id_rsa file into a directory without "." in its name...






share|improve this answer














That's a known issue of RDM: https://github.com/uglide/RedisDesktopManager/issues/4230



Workaround: copy your id_rsa file into a directory without "." in its name...







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 5 at 13:58









Jeff Schaller

37.5k1052121




37.5k1052121










answered Dec 5 at 13:35









nimai

1985




1985











  • Please note, that the file must not be sym-linked. It has to be copied or hard-linked.
    – jacek.ciach
    Dec 5 at 15:33
















  • Please note, that the file must not be sym-linked. It has to be copied or hard-linked.
    – jacek.ciach
    Dec 5 at 15:33















Please note, that the file must not be sym-linked. It has to be copied or hard-linked.
– jacek.ciach
Dec 5 at 15:33




Please note, that the file must not be sym-linked. It has to be copied or hard-linked.
– jacek.ciach
Dec 5 at 15:33

















draft saved

draft discarded
















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f485475%2funable-to-create-a-proper-pem-for-redis-desktop-manager%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown






Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay