How to use SSH (Secure Shell) on Windows and Mac to access your account
This article describes how to connect to your A2 Hosting report securely using SSH .
What is SSH access and why would you need to use SSH?
batten Shell ( SSH ) is a protocol that provides guarantee command-line access to your A2 Hosting history. By using SSH, you can remotely log in to your A2 Hosting report and run commands as if you were sitting right at the server .
SSH is the only protocol that A2 Hosting supports for access to the command line. For security reasons we do not support telnet .
With its simplified interface, the instruction tune allows you to perform tasks with textbook commands. You ‘ll besides find that SSH is a time-saving solution that can ultimately help speed up many tasks. For case, you can do tasks that you can not do with your account’s hosting control jury.
How SSH works
An SSH joining creates a fasten connection between two computers. SSH is able to provide a safe, code connection between the node and the server through this code burrow. From here, you can easily transfer files between the connected machines, or run programs and commands that would otherwise require more complicate screen-sharing solutions. It is as if you were right in battlefront of your server, in the data center field where it is located .
What you need to create an SSH connection
just as you need an FTP node to manage files with FTP, you need an SSH customer on your computer to make an SSH joining. PuTTY and WinSCP are two democratic SSH solutions for Windows users. Both Linux and macOS have built-in terminals, so it is not necessity to download an SSH customer. Our bit-by-bit SSH account entree instructions, outlined below, will help you access your score remotely .
Where can you find SSH connection details?
To find the SSH connection details for your account, log in to the A2 Hosting Customer Portal at hypertext transfer protocol : //my.a2hosting.com .
Click on your plan, located in the Your Active Products/Services department :
Click anywhere on your package. This takes you to the Manage page. The Manage foliate contains all of the technical information you need for SSH, such as your IP Address, SSH Port, Username, and Password :
For more data about how to use the Customer Portal, please see these articles .
How to use an SSH client
once you have the joining details for your report, you are ready to use an SSH client to connect to the server. Follow the appropriate operation below for your computer ‘s operate system .
Windows operating systems
You can use any SSH customer, 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.
A2 does not use the nonpayment SSH port 22. Please SSH to port 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.
For security system reasons, no characters appear in the terminal as you type the password . - 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 fifty, and then press Enter.
- To close the SSH connection when you are done, type passing and then press Enter.
macOS and Linux operating systems
Both macOS and Linux include SSH clients, indeed connecting to your A2 Hosting report on these operating systems is easy. You do not have to download a particular node .
To connect to your report, 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 end.
- At the command prompt, type the follow dominate. Replace username with your A2 Hosting username, and example.com with your site ‘s world name :
ssh -p 7822 username@example.com
A2 does not use the default SSH port 22. Please SSH to port 7822 .
- Type your password when you are prompted to do thus.
For security system reasons, no characters appear in the concluding as you type the password . - When the outback server ‘s command line motivate 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 liter,
Read more: How to register as a VIP in GTA Online
and then press Enter.
- To close the SSH connection when you are done, type exit and then press Enter.
In the command in dance step 2, we explicitly specify the larboard act, the username, and the hostname. however, you can besides define these settings for a distant horde in your ~/.ssh/config file as follows :Host example Hostname example.com Port 7822 User username
The Host rate can be any name you want ; it is plainly a label for the other settings. The Hostname value is the distant host you want to access, the larboard number is 7822, and the User value specifies your A2 Hosting account username. With this configuration defined, you can connect to the account by simply using the Host value. You do not have to type the port number, username, and hostname each time. The comply command demonstrates how to do this :
ssh example