Comprehensive guides to help you get the most out of SSH.AC
A quick guide to get you up and running
Welcome to SSH.AC! This guide will help you set up your first SSH server and connect to it in just a few minutes.
To get started, sign up for an SSH.AC account. You'll need to provide your email address and create a password.
Select the plan that best fits your needs. Not sure which one? Start with Basic and you can upgrade later.
Once logged in, navigate to the Dashboard and click on "Create New Server". You'll need to:
After your server is provisioned (usually takes less than 60 seconds), you'll see connection details in your dashboard. Use these to connect via your terminal:
ssh [email protected]
Congratulations! You're now connected to your SSH.AC server. Check out our Guides for next steps, including:
Managing your SSH.AC account
Once logged in, you can manage your account settings from the Account section in the dashboard. Here you can:
We strongly recommend enabling two-factor authentication (2FA) for your SSH.AC account. This adds an extra layer of security by requiring a second verification method in addition to your password.
To enable 2FA:
Pro and Enterprise plans include team management features. To add team members:
If you plan to use our API, you'll need to generate API keys. You can create and manage API keys in the Account Settings → API section.
API keys grant access to your SSH.AC resources. Keep them secure and never share them publicly.
Introduction to SSH and common commands
Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network. Here are some SSH basics to get you started:
To connect to your SSH.AC server, use the following command:
ssh [email protected]
ls
- List files in the current directorycd
- Change directorymkdir
- Create a new directoryrm
- Remove files or directoriescp
- Copy files or directoriesmv
- Move or rename filesnano
or vim
- Edit text filestop
- View running processesdf -h
- Check disk space usageView our complete SSH command reference
To copy files to or from your server, you can use SCP (Secure Copy Protocol):
From your local machine to the server:
scp /path/to/local/file [email protected]:/path/to/remote/directory
From the server to your local machine:
scp [email protected]:/path/to/remote/file /path/to/local/directory