> For the complete documentation index, see [llms.txt](https://docs.lidistat67.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.lidistat67.eu/connecting-to-your-vps.md).

# Connecting to your VPS

Once your VPS has done provisioning, go to Details.

<figure><img src="/files/LY3qEnhptDDLtPROophE" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
You'll now have to connect to your VPS. You can use PuTTY, Termius, or ssh. PuTTY is recommended for Windows while ssh is recommended for Linux and MacOS. For users who fancy a modern GUI, they can use Termius which is available on every OS.
{% endhint %}

## PuTTY

{% hint style="info" %}
Instruction on how to instal PuTTY can be found in the [Install prerequisites](/installing-dependencies.md#putty) page.
{% endhint %}

### Convert your SSH key into a PuTTY private Key

In order to convert your SSH key into a PuTTY compatible key, you'll have to open PuTTYgen (this can be found from the Windows search bar)

Once you are in PuTTYgen click "Load"

<figure><img src="/files/4LASJgyNI7k41xDO2LG4" alt=""><figcaption></figcaption></figure>

Make sure you choose "All Files" then choose the SSH key you downloaded previously.<br>

<figure><img src="/files/wk7O4OhrLhHNAlS7EAi1" alt=""><figcaption></figcaption></figure>

Finally click on "Save private key" and make sure you save it somewhere you can remember.

<figure><img src="/files/xCpsvgwibUSfEp9SpQ7C" alt=""><figcaption></figcaption></figure>

### Import SSH key into PuTTY

To start, open the PuTTY application.

Go to Connection, then SSH, then click the + next to Auth, and finally, click on Credentials.

<figure><img src="/files/TAwgyvKRxP9dLgXp9FbE" alt=""><figcaption></figcaption></figure>

Finally click on browse and select the SSH key you saved in the previous step using PuTTYgen

In order to connect to your VPS along with your SSH key you'll also need your instance's public IP and username. These can be found in the Details tab of your instance.

<figure><img src="/files/biQ23P7d0Bph6lF3u6BL" alt=""><figcaption></figcaption></figure>

Go to Session and paste your IP address into the Host Name field.

<figure><img src="/files/5suI7a3OjDAQOGGZZ4jz" alt=""><figcaption></figcaption></figure>

Finally, click on "Open".

If this prompt appears, click on "Accept"

<figure><img src="/files/uQYH653IwluV1jEEPIjj" alt=""><figcaption></figcaption></figure>

When the login as: prompt appears, type your instance's username.

Once you have connected to your VPS, move over to [Installing dependencies](/installing-dependencies.md#on-the-vps)

## Termius

{% hint style="info" %}
Instructions on how to install Termius can be found in the [Install prerequisites](/installing-dependencies.md#termius) page.
{% endhint %}

In order to connect to your VPS along with your SSH key you'll also need your instance's public IP and username. These can be found in the Details tab of your instance.

<figure><img src="/files/biQ23P7d0Bph6lF3u6BL" alt=""><figcaption></figcaption></figure>

Click on "Add" then "New host"

<figure><img src="/files/teZcK8VAIHwdOITDUFsl" alt=""><figcaption></figcaption></figure>

Enter your IP address in the "Address" field.

Import your key by clicking "Set a key" then "Create a new key" and select the key you've downloaded from Oracle.

Enter your username and click on connect.

Once you have connected to your VPS, move over to [Installing dependencies](/installing-dependencies.md#on-the-vps)

## Linux/MacOS built in SSH client

In order to connect to your VPS along with your SSH key you'll also need your instance's public IP and username. These can be found in the Details tab of your instance.

<figure><img src="/files/biQ23P7d0Bph6lF3u6BL" alt=""><figcaption></figcaption></figure>

Connect to your VM by running:

```
sudo ssh -i /path/to/key username@server-ip
```

Once you have connected to your VPS, move over to [Installing dependencies](/installing-dependencies.md#on-the-vps)
