Skip to content
This repository was archived by the owner on Aug 14, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions _episodes/01-connecting.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,25 +232,30 @@ when using SSH keys and `ssh [email protected]` if only
password access is available. Let's attempt to connect to the HPC system
now:


<details>
<summary> EdDSA Key</summary>
```
ssh -i ~/.ssh/key_{{ site.workshop_host }}_ed25519 yourUsername@{{ site.workshop_host_login }}
```
{: .language-bash}
</details>

or

<details>
<summary> RSA Key</summary>
```
ssh -i ~/.ssh/key_{{ site.workshop_host }}_rsa yourUsername@{{ site.workshop_host_login }}
```
{: .language-bash}
</details>

or if SSH keys have not been enabled

<details>
<summary> No SSH keys</summary>
```
ssh yourUsername@{{ site.workshop_host_login }}
```
{: .language-bash}

</details>

```
{% include /snippets/01/login_output.{{ site.workshop_host_id }} %}
Expand Down