SSH (Secure Shell) lets you connect to your hosting account from a terminal and run commands directly on the server. It is available on all TPC Hosting plans that include SSH access.
What you need
- Your cPanel username and password
- Your server hostname or IP address (found in your welcome email or cPanel)
- A terminal application
Finding your SSH hostname
- Log in to cPanel.
- In the top-right corner you will see your server information. Your hostname is listed there, or use your domain name directly.
Connecting from Windows
- Open PowerShell or Windows Terminal (both have SSH built in on Windows 10 and later).
- Type the following command and press Enter:
ssh yourusername@yourdomain.com - When prompted, type your cPanel password and press Enter. The password will not be visible as you type — this is normal.
- If this is your first connection, type yes when asked to confirm the host fingerprint.
Connecting from macOS or Linux
- Open Terminal.
- Type the following command and press Enter:
ssh yourusername@yourdomain.com - Enter your cPanel password when prompted.
SSH port
The default SSH port is 22. If your server uses a custom port, add -p portnumber to the command:
ssh -p 2222 yourusername@yourdomain.com
Tip: Once connected, type exit to close the SSH session.