How to open an account
Account Setup
- Send me your preferred username:
{USERNAME} - Choose a name for the server:
{HOSTNAME} - Open a terminal and run the following command to generate your key pair
(press Enter when prompted to leave the passphrase empty):
ssh-keygen -t ed25519 -C "your-email" -f ~/.ssh/{HOSTNAME} - Send me the contents of the public key (run this and copy the output):Never send the contents of the private key!
cat ~/.ssh/{HOSTNAME}.pub
How to Connect
You will receive an email with the IP address of the server: {IP_ADDRESS}
Option 1: Direct Command
ssh -i ~/.ssh/{HOSTNAME} {USERNAME}@{IP_ADDRESS}
Option 2: SSH Config (Recommended)
- Add the following to your
~/.ssh/configfile:Host {HOSTNAME} HostName {IP_ADDRESS} User {USERNAME} IdentityFile ~/.ssh/{HOSTNAME} IdentitiesOnly yes - Connect with:
ssh {HOSTNAME}