How Can We Help?
How to use SSH (Secure Shell) on Windows and Mac to access your account
What is SSH access and why would you need to use SSH?
Secure Shell (SSH) is a protocol that provides secure command-line access to your XauZit Cloud account. By using SSH, you can remotely log in to your XauZit Cloud account and run commands as if you were sitting right at the server.
With its simplified interface, the command line allows you to perform tasks with text commands. You’ll also find that SSH is a time-saving solution that can ultimately help speed up many tasks. For example, you can do tasks that you cannot do with your account’s hosting control panel.
How SSH works
An SSH connection creates a secure connection between two computers. SSH is able to provide a safe, encrypted connection between the client and the server through this encrypted tunnel. From here, you can easily transfer files between the connected machines, or run programs and commands that would otherwise require more complicated screen-sharing solutions. It is as if you were right in front of your server, in the data center where it is located.
What you need to create an SSH connection
Just as you need an FTP client to manage files with FTP, you need an SSH client on your computer to make an SSH connection. PuTTY and WinSCP are two popular SSH solutions for Windows users. Both Linux and macOS have built-in terminals, so it is not necessary to download an SSH client. Our step-by-step SSH account access instructions, outlined below, will help you access your account remotely.
Where can you find SSH connection details?
To find the SSH connection details for your account, log in to the XauZit Cloud Customer Portal at
https://my.cloud.xauzit.com/

Click anywhere on your package. This takes you to the Manage page. The Manage page contains all of the technical information you need for SSH, such as your IP Address, SSH Port, Username, and Password:

For more information about how to use the Customer Portal, please see these articles.
How to use an SSH client
Once you have the connection details for your account, you are ready to use an SSH client to connect to the server. Follow the appropriate procedure below for your computer’s operating system.
Windows operating systems
You can use any SSH client, but we will show how to use PuTTY, which you can download here. To connect to your account using PuTTY, follow these steps:
- Start PuTTY.
- In the Host Name (or IP address) text box, type the hostname or IP address of the server where your account is located.
- In the Port text box, type 7822
- Confirm that the Connection type radio button is set to SSH.
- Click Open.
- A PuTTY security alert about the server’s host key appears the first time you connect. Click Yes.
- Enter your account username when prompted, and then press Enter.
- Type your account password when prompted, and then press Enter
- When the remote server’s command line prompt appears, you are connected. The initial command line prompt is:
[email protected] [~]#
- You can now run commands. For example, to see a listing of the current directory, type ls, and then press Enter.
- To close the SSH connection when you are done, type exit and then press Enter.
macOS and Linux operating systems
Both macOS and Linux include SSH clients, so connecting to your XauZit Cloud account on these operating systems is easy. You do not have to download a special client.
To connect to your account, follow these steps:
- Open a terminal window. The procedure to do this depends on the operating system and desktop environment.
- On macOS, click Applications, click Utilities and then click Terminal.
- At the command prompt, type the following command. Replace username with your XauZit Cloud username, and example.com with your site’s domain name:
ssh -p 7822 [email protected]
- Type your password when you are prompted to do so.
- When the remote server’s command line prompt appears, you are connected. The initial command line prompt is:
[email protected] [~]#
- You can now run commands. For example, to see a listing of the current directory, type ls, and then press Enter.
- To close the SSH connection when you are done, type exit and then press Enter.

