Unable to create a proper PEM for Redis Desktop Manager
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
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 myid_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 messageConnection: 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
add a comment |
up vote
1
down vote
favorite
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 myid_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 messageConnection: 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
Can openssl read the private key? Please do not post the results, but run the commandopenssl pkey -in ~/.ssh/my_key.pem -text
.... And what format does the key say it's in... Do post this resultgrep 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
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
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 myid_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 messageConnection: 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
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 myid_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 messageConnection: 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
ubuntu ssh-tunneling redis
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 commandopenssl pkey -in ~/.ssh/my_key.pem -text
.... And what format does the key say it's in... Do post this resultgrep 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
add a comment |
Can openssl read the private key? Please do not post the results, but run the commandopenssl pkey -in ~/.ssh/my_key.pem -text
.... And what format does the key say it's in... Do post this resultgrep 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
add a comment |
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...
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
add a comment |
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...
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
add a comment |
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...
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
add a comment |
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...
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...
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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 resultgrep 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