### Generate SSH Keys (Windows) Source: https://docs.ottomatic.cloud/docs/ottomatic/hosting/getting-started/ssh-public-key Generates an RSA SSH key pair on Windows systems after ensuring the OpenSSH Client is installed. If a key already exists, the user is prompted to overwrite it. The public key is then copied to the clipboard. The default key location is `\Users\\.ssh\`. ```bash ssh-keygen clip < id_rsa.pub ``` -------------------------------- ### Generate SSH Keys (Mac/Linux) Source: https://docs.ottomatic.cloud/docs/ottomatic/hosting/getting-started/ssh-public-key Generates an RSA SSH key pair on Mac and Linux systems. If a key already exists, it can be displayed and copied. If not, new keys are generated by leaving the file and passphrase prompts blank. The public key is then copied to the clipboard. ```bash cat ~/.ssh/id_rsa.pub pbcopy < ~/.ssh/id_rsa.pub ``` ```bash ssh-keygen -t rsa pbcopy < ~/.ssh/id_rsa.pub ```