generated from jhudsl/OTTR_Template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
04-logging-in.Rmd
93 lines (58 loc) · 3.72 KB
/
04-logging-in.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
```{r, include = FALSE}
ottrpal::set_knitr_image_path()
```
# Logging In
```{r, echo=FALSE, fig.alt='We are on the fourth step of the pathway.', out.width = '80%', fig.align = 'center'}
ottrpal::include_slide("https://docs.google.com/presentation/d/1BQxrVYdKZTbpCaF-i_q9w7s9x034lEXpQZDU-Sl09cs/edit#slide=id.gff2211b72f_1_206")
```
Now that you have your Terminal application ready, you want to connect to the cluster. You will do this using a method called [SSH](https://www.ssh.com/academy/ssh/protocol){target="_blank"}, which stands for "Secure SHell".
## What is `SSH`?
SSH is a secure way to remotely connect to another computer or network of computers. In other words, SSH helps us protect your data and the data on the Fred Hutch cluster through authentication.
<div class = "dictionary">
**Hostname**
The hostname is the name, or label, assigned to a computer in a network. We are connecting to hostname `rhino.fhcrc.org` or `rhino` for short.
</div>
## Connect Securely
Before moving on, you will need to connect to the Fred Hutch wifi network, a networked ethernet jack, or the [Fred Hutch VPN](https://centernet.fredhutch.org/cn/u/center-it/help-desk/vpn.html){target="_blank"}. This is the first layer of security.
The next set of steps are specific to your operating system.
## Windows Login
<details><summary>Click to view steps</summary><p>
1. Go to the PuTTY Configuration menu. Under "Host Name" type **rhino** and click "Open".
```{r, echo=FALSE, fig.alt='The PuTTY Host Name "rhino" has been typed in.', out.width = '100%'}
ottrpal::include_slide("https://docs.google.com/presentation/d/1BQxrVYdKZTbpCaF-i_q9w7s9x034lEXpQZDU-Sl09cs/edit#slide=id.g15643d101eb_4_41")
```
1. You will be prompted to login. Type in your HutchNetID (e.g., `jsmith3`).
```{r, echo=FALSE, fig.alt='The login prompt for rhino.', out.width = '100%'}
ottrpal::include_slide("https://docs.google.com/presentation/d/1BQxrVYdKZTbpCaF-i_q9w7s9x034lEXpQZDU-Sl09cs/edit#slide=id.g15643d101eb_4_48")
```
1. Enter your password. No`*` or symbols will show up, so type it in carefully!
1. You are now logged in! There should be a login message, with your name at the bottom.
```{r, echo=FALSE, fig.alt='Screenshot of the PuTTY Terminal.', out.width = '100%'}
ottrpal::include_slide("https://docs.google.com/presentation/d/1BQxrVYdKZTbpCaF-i_q9w7s9x034lEXpQZDU-Sl09cs/edit#slide=id.g15643d101eb_4_60")
```
Congratulations! You are now logged in to the Fred Hutch cluster!
</p></details>
## Mac Login
<details><summary>Click to view steps</summary><p>
1. Type the following commands, substituting in your HutchNet ID (no brackets):
```
ssh [HutchID]@rhino
```
1. You will see a message that looks like `The authenticity of host 'rhino (XXX.XXX.XX.XX)' can't be established.` Type in `yes` and hit enter.
1. Enter your password. No`*` or symbols will show up, so type it in carefully!
1. You are now logged in! There should be a login message, with your name at the bottom.
```{r, echo=FALSE, fig.alt='Screenshot of the Mac Terminal.', out.width = '100%'}
ottrpal::include_slide("https://docs.google.com/presentation/d/1BQxrVYdKZTbpCaF-i_q9w7s9x034lEXpQZDU-Sl09cs/edit#slide=id.g149d37dd4a1_0_43")
```
Congratulations! You are now logged in to the Fred Hutch cluster!
</p></details>
## Linux Login
<details><summary>Click to view steps</summary><p>
1. Type the following commands, substituting in your HutchNet ID (no brackets):
```
ssh [HutchID]@rhino
```
1. Enter your password. No`*` or symbols will show up, so type it in carefully!
1. You are now logged in! There should be a login message, with your name at the bottom.
Congratulations! You are now logged in to the Fred Hutch cluster!
</p></details>