Sometimes the Open SSH Server does not come enabled or installed by default on a clean installation. This short guide will show you how to get it one your machine.
Let's download the program.
sudo apt-get install openssh-server
Verify that it installed properly.
sudo service ssh status
If you want to modify any of the ports or settings in SSH, simply open the file and change what...
If you need to create a private and public ssh key, run the following command.
ssh-keygen -t rsa -b 4096 -C "email@example.com"
By default, AWS will give you a .pem key when you create your server. The key is automatically added into the authorized keys upon creation. If you like this way, you can keep it, but you can specify it even more if you were going to give your team access too, and wanted an easy way to remove them afterwards ...