Rudi 3782e64425
Some checks failed
build and deploy docs / build (push) Failing after 11s
build and deploy docs / publish (push) Has been skipped
Big apps section haul-over - revised
2025-11-23 12:38:27 +01:00

852 B

Set up SSH keys

How to setup access to Linux systems using SSH keys.

___________________

Linux server:

cd ~/.ssh
$ ssh-keygen -t ed25519

Put id_ed25519.pub key content -> ~/.ssh/authorized_keys

$ chmod 700 ~/.ssh
$ chmod 600 ~/.ssh/authorized_keys
$ chown $USER:$USER ~/.ssh -R

Windows client:

copy Linux server: id_ed25519 -> Windows: C:\users\<user>\.ssh\id_ed25519_<server name>_<server user>  

In Solar-putty:  
Left-top menu-dots: Generate certificates  

In Putty keygen:  
Conversions/import key: C:\users\<user>\.ssh\id_ed25519_<server name>_<server user>  

Save private key: 
id_ed25519_<server name>_<server user>.ppk  

Solar-putty: Settings/Credentials/Private key: 
id_ed25519_<server name>_<server user>.ppk  

Back to frontpage