CLI
Copy SSH Key to Remote Server
Generate a public/private key pair and copy the public key to the remote host. # generate public/private keys ssh-keygen -b 2048 -t rsa -C "your_username" -f filename # copy key to remote host cat ~/.ssh/filename.pub | ssh username@remote_host "mkdir -p ~/.ssh &