website/_posts/2021-09-03-ssh-keys.md
sthope 0506f02b43
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2021-09-04 02:52:02 +02:00

608 B

layout title description author image categories comments
post SSH Keys sthope
ssh
ssh keys
true

Generate a long random password with:

cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1

Replace very_long_secret with the long generated password and replace /opt/.certs/service with the location for your keys and the name (different name for each key "service") Default generally is ~/.ssh/id_rsa, you can omit -f "/opt/.certs/service" if you don't want to choose it.

ssh-keygen -t rsa -b 4096 -f "/opt/.certs/service" -C "Hopeless Automations"