Access & manage instances
See the status of your instances, reservations, and spot bids

See the status of your instances, reservations, and spot bids

chmod 600 /path/to/your/private/keyssh -i /path/to/your/private/key ubuntu@<ip># Create a new user
sudo adduser new_user
# Switch to the new user
sudo su - new_user
# Create .ssh directory for the new user
mkdir ~/.ssh
# Change the directory permissions
chmod 700 ~/.ssh
# Create authorized_keys file
touch ~/.ssh/authorized_keys
# Add the public key to the authorized_keys file
echo "new_user_public_key" >> ~/.ssh/authorized_keys
# Change the file permissions
chmod 600 ~/.ssh/authorized_keys