Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 411 Bytes

setting-up-aws-users.md

File metadata and controls

15 lines (15 loc) · 411 Bytes

Setting Up AWS Users

start by going root (aws requires you to login as ubuntu), then add your user, followed by adding the ssh key to authorized

sudo su -
adduser nate
gpasswd -a nate sudo
exit
sudo su nate
cd ~
mkdir .ssh
chmod 700 .ssh
touch .ssh/authorized_keys
chmod 600 .ssh/authorized_keys

then finally paste the ssh key into the authorized_keys file, log out and then login with the user.