Add key to SSH
`ssh-add id_rsa`
If error:
```
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0664 for 'id_rsa.pub' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
```
perform:
`ls -l`
`chmod 700 ec2_id_rsa`
`chmod 700 ec2_id_rsa.pub`
bonus - creating *.pub key from private one:
`ssh-keygen -y -f id_rsa > ~/.ssh/id_rsa.pub`