-
Notifications
You must be signed in to change notification settings - Fork 336
/
connect-ssh-keys.Rmd
373 lines (265 loc) · 14.6 KB
/
connect-ssh-keys.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
# Set up keys for SSH {#ssh-keys}
When we interact with a remote Git server, such as GitHub, we have to include credentials in the request.
This proves we are a specific GitHub user, who's allowed to do whatever we're asking to do.
Git can communicate with a remote server using one of two protocols, HTTPS or SSH, and the different protocols use different credentials.
Here we describe the credential setup for the SSH protocol.
If you're not sure whether to use HTTPS or SSH, please read [HTTPS versus SSH](#https-vs-ssh).
From now on, we assume you've made an intentional choice to set up SSH keys.
## SSH keys
SSH keys provide a more secure way of logging into a server than using a password alone. While a password can eventually be cracked with a brute force attack, SSH keys are nearly impossible to decipher by brute force alone. Generating a key pair provides you with two long strings of characters: a public and a private key. You can place the public key on any server (like GitHub!), and then unlock it by connecting to it with a client that already has the private key (your computer!). When the two match up, the system unlocks without the need for a password. You can increase security even more by protecting the private key with a passphrase.
Adapted from instructions provided by [GitHub](https://help.github.com/categories/ssh/) and [Digital Ocean](https://www.digitalocean.com/community/tutorials/how-to-set-up-ssh-keys--2).
## SSH outline and advice
High level overview of what must happen:
* Create a public-private SSH key pair. Literally, 2 special files, in a special place. Optionally, encrypt the private key with a passphrase (best practice).
* Add the private key to your ssh-agent. If you protected it with a passphrase, you may have additional configuration.
* Add your public key to your GitHub profile.
Advice:
* If you are new to programming and the shell, you'll probably find HTTPS easier at first (chapter \@ref(https-pat)). You can always switch to SSH later. You can use one method from computer A and the other from computer B.
* You should swap out your SSH keys periodically. Something like once a year.
* It's best practice to protect your private key with a passphrase. This can make setup and usage harder, so if you're not up for that (yet), either don't use a passphrase or seriously consider using HTTPS instead.
* Don't do weird gymnastics in order to have only one key pair, re-used over multiple computers. You should probably have one key per computer (I do this). Some people even have one key per computer, per service (I do not do this).
* It is normal to associate multiple public keys with your GitHub account. For example, one public key for each computer you connect with.
## Do you already have keys?
You can check this from RStudio or from the shell.
Global advice: if you do have existing keys, but have no clue where they came from or why you created them, you should seriously consider creating a new SSH key pair. It's up to you to figure out whether/how to delete the old ones. But don't let that keep you from creating new keys and moving forward.
### From RStudio
Go to *Tools > Global Options...> Git/SVN*. If you see something like `~/.ssh/id_rsa` in the SSH RSA Key box, you definitely have existing keys.
Caveat: RStudio only looks for a key pair named `id_rsa` and `id_rsa.pub`.
This makes sense, because historically that has been the most common.
However, these days both GitHub and GitLab are encouraging users to generate SSH keys with the Ed25519 algorithm, which results in a key pair named `id_ed25519` and `id_ed25519.pub`.
At the time of writing, RStudio will not display such a key pair, which can be confusing.
Therefore, it's probably a good idea to also check for existing keys in the shell.
### From the shell
Go to the shell (appendix \@ref(shell)).
List existing keys:
```console
ls -al ~/.ssh/
```
If you are told `~/.ssh/` doesn't exist, you don't have SSH keys!
If you see a pair of files like `id_rsa.pub` and `id_rsa` or `id_ed25519` and `id_ed25519.pub`, you have a key pair already.
The typical pattern is `id_FOO.pub` (the public key) and `id_FOO` (the private key), where `FOO` reflects the key type.
If you're happy to stick with your existing keys, skip to the sections about adding a key to the ssh-agent and GitHub.
## Create an SSH key pair
### Option 1: Set up from RStudio
Go to *Tools > Global Options...> Git/SVN > Create SSH Key...*.
RStudio prompts you for a passphrase. It is optional, but also a best practice. Configuring your system for smooth operation with a passphrase-protected key introduces more moving parts.
If you're completely new at all this, skip the passphrase (or use HTTPS!) and implement it next time, when you are more comfortable with system configuration.
I did not use a passphrase at first, but I do now, and record it in a password manager.
Click "Create" and RStudio will generate an SSH key pair, stored in the files `~/.ssh/id_rsa` and `~/.ssh/id_rsa.pub`.
Note that RStudio currently only generates RSA keys, whereas the standard recommendation by GitHub and GitLab is to use Ed25519 keys.
If you want to comply with that advice, generate your keys in the shell for now.
### Option 2: Set up from the shell
Create the key pair like so, but substitute a comment that means something to you, especially if you'll have multiple SSH keys in your life.
Consider the email associated with your GitHub account or the name of your computer or some combination, e.g. `[email protected]` or `macbook-pro` or `jane-2020-macbook-pro`.
```console
ssh-keygen -t ed25519 -C "DESCRIPTIVE-COMMENT"
```
If it appears that your system is too old to support the Ed25519 algorithm, do this instead:
```console
ssh-keygen -t rsa -b 4096 -C "DESCRIPTIVE-COMMENT"
```
Accept the proposal to save the key in the default location.
Just press Enter here:
```console
Enter file in which to save the key (/Users/jenny/.ssh/id_ed25519):
```
You have the option to protect the key with a passphrase.
It is optional, but also a best practice.
Configuring your system for smooth operation with a passphrase-protected key introduces more moving parts.
If you're completely new at all this, skip the passphrase and implement it next time, when you are more comfortable with system configuration.
I did not use a passphrase at first, but I do now, and record it in a password manager.
```console
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
```
The process should complete now and should have looked like this:
```console
~ % ssh-keygen -t ed25519 -C "jenny-2020-mbp"
Generating public/private ed25519 key pair.
Enter file in which to save the key (/Users/jenny/.ssh/id_ed25519):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /Users/jenny/.ssh/id_ed25519.
Your public key has been saved in /Users/jenny/.ssh/id_ed25519.pub.
The key fingerprint is:
SHA256:XUEaY/elhcQJz3M9jx/SdC0zh10lCA7uNpqgkm5G/R0 jenny-2020-mbp
The key's randomart image is:
+--[ED25519 256]--+
| . =o==oo*|
| . + =.=+B+|
| . o . @oB|
| . . . oO+|
| . . S . ..o.|
| o o . E . ...|
|+ . . + . .|
|.+ . . |
|o. |
+----[SHA256]-----+
```
### Add key to ssh-agent
Tell your ssh-agent about the key and, especially, set it up to manage the passphrase, if you chose to set one.
Things get a little OS-specific around here.
When in doubt, consult [GitHub's instructions for SSH](https://docs.github.com/en/authentication/connecting-to-github-with-ssh), which is kept current for Mac, Windows, and Linux.
It also accounts for more unusual situations than I can.
#### Mac OS
Make sure ssh-agent is enabled. Here's what success look like (the `pid` will vary):
```console
~ % eval "$(ssh-agent -s)"
Agent pid 15360
```
Sometimes this fails like so:
```console
~ % eval "$(ssh-agent -s)"
mkdtemp: private socket dir: No such file or directory
```
A similar failure might be reported as "Permission denied".
You should try again, but as the superuser.
Don't forget to use `exit` to go back to your normal user account, when you are done!
```console
~ % sudo su
Password:
sh-3.2# eval "$(ssh-agent -s)"
Agent pid 15385
sh-3.2# exit
exit
```
Add your key to the ssh agent.
If you set a passphrase, you'll be challenged for it here.
Give it.
The `-K` option stores your passphrase in the keychain.
```console
~ % ssh-add -K ~/.ssh/id_ed25519
Enter passphrase for /Users/jenny/.ssh/id_ed25519:
Identity added: /Users/jenny/.ssh/id_ed25519 (jenny-2020-mbp)
```
If you're on macOS Sierra 10.12.2 and higher, you need to do one more thing.
Create a file `~/.ssh/config` with these contents:
```bash
Host *
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_ed25519
```
You can omit the line about `UseKeychain` if you didn't use a passphrase.
But if you did, this should store your passphrase *persistently* in the keychain.
Otherwise, you will have to enter it every time you log in.
Useful StackOverflow thread: [How can I permanently add my SSH private key to Keychain so it is automatically available to ssh?](https://apple.stackexchange.com/questions/48502/how-can-i-permanently-add-my-ssh-private-key-to-keychain-so-it-is-automatically).
#### Windows
In a Git Bash shell, make sure ssh-agent is running:
```console
$ eval $(ssh-agent -s)
Agent pid 59566
```
Add your key, substituting the correct name for your key.
```console
$ ssh-add ~/.ssh/id_ed25519
```
#### Linux
In a shell, make sure ssh-agent is running:
```console
$ eval "$(ssh-agent -s)"
Agent pid 59566
```
Add your key, substituting the correct name for your key.
```console
ssh-add ~/.ssh/id_ed25519
```
## Provide public key to GitHub
Now we store a copy of your public key on GitHub.
### RStudio to clipboard
Go to *Tools > Global Options...> Git/SVN*.
If your key pair is named like `id_rsa.pub` and `id_rsa`, RStudio will see it and offer to "View public key".
Do that and accept the offer to copy to your clipboard.
If your key pair is named differently, such as `id_ed25519.pub` and `id_ed25519`, you'll have to copy the public key another way.
### Shell to clipboard
Copy the public key onto your clipboard.
For example, open `~/.ssh/id_ed25519.pub` in an editor and copy the contents to your clipboard.
Or do one of the following at the command line:
* Mac OS: `pbcopy < ~/.ssh/id_ed25519.pub`
* Windows: `clip < ~/.ssh/id_ed25519.pub`
* Linux: `xclip -sel clip < ~/.ssh/id_ed25519.pub`
Linux: if needed, install `xclip` via `apt-get` or `yum`. For example, `sudo apt-get install xclip`.
### On GitHub
Now we register the public key with GitHub.
Click on your profile pic in upper right corner and go to *Settings > SSH and GPG keys*.
Click "New SSH key".
Paste your public key in the "Key" box.
Give it an informative title, presumably repeating the descriptive comment you used above, during key creation.
Click "Add SSH key".
In theory, we're done!
You can use [`ssh -T [email protected]`](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/testing-your-ssh-connection) to test your connection to GitHub.
If you're not sure what to make of the output, see the link for details.
Of course, the best test is to work through the realistic usage examples elsewhere in this guide.
## Troubleshooting {#ssh-troubleshooting}
### HTTPS URL when you meant to use SSH
If you think you have SSH set up correctly and yet you are still challenged for credentials, consider this: for the repo in question, have you possibly set up GitHub, probably called `origin`, as an HTTPS remote, instead of SSH?
How to see the remote URL(s) associated with the current repo in the shell:
```console
git remote -v
```
An SSH remote will look like this:
```console
[email protected]:USERNAME/REPOSITORY.git
```
whereas an HTTPS remote will look like this:
```console
https://github.com/USERNAME/REPOSITORY.git
```
You can fix this with `git remote set-url`, which is demonstrated in [URL determines the protocol](#url-determines-protocol).
### git2r -- or some other tool -- can't find SSH keys on Windows
Have you seen this error message?
```console
Error in .local(object, ...) :
Error in 'git2r_push': error authenticating: failed connecting agent
```
We've seen it when working with Git/GitHub from R via the [git2r](https://cran.r-project.org/web/packages/git2r/index.html) package.
The root cause is confusion about the location of `.ssh/` on Windows.
R's idea of your home directory on Windows often differs from the default location of config files for Git and ssh, such as `.ssh/`.
On *nix systems, these generally coincide and there's no problem.
Two important directories on Windows are the user's HOME and USERPROFILE.
R usually associates `~` with HOME, but Git and ssh often consult USERPROFILE for their config files.
On my Windows 10 VM, I see:
```{r eval = FALSE}
normalizePath("~")
#> [1] "C:\\Users\\JennyVM\\Documents"
as.list(Sys.getenv(
c("HOME", "USERPROFILE")
))
#> $HOME
#> [1] "C:/Users/JennyVM/Documents"
#>
#> $USERPROFILE
#> [1] "C:\\Users\\JennyVM"
list.files(
Sys.getenv("USERPROFILE"),
pattern = "ssh|git",
include.dirs = TRUE,
all.files = TRUE
)
#> [1] ".gitconfig" ".ssh"
```
Two workarounds:
* Tell git2r explicitly where to find your public and private key and pass the resulting `cred` object to your git2r calls.
```{r eval = FALSE}
cred <- git2r::cred_ssh_key(
publickey = "~/../.ssh/id_rsa.pub",
privatekey = "~/../.ssh/id_rsa"
)
```
* [Create a symbolic link](https://www.howtogeek.com/howto/16226/complete-guide-to-symbolic-links-symlinks-on-windows-or-linux/) so that `.ssh/` in R's home directory points to your actual `.ssh/` directory. Example contributed by Ian Lyttle on Windows 7 using Command Prompt:
```console
MKLINK /D "C:\Users\username\Documents\.ssh" "C:\Users\username\.ssh"
```
Finally, if git2r seems unable to get your SSH passphrase from ssh-agent, install the getPass package:
```{r eval = FALSE}
install.packages("getPass")
```
and git2r should launch a popup where you can enter your passphrase.
Thanks to Ian Lyttle for this tip.
This link provides a great explanation of the uncertainty about where `.ssh/` and user's `.gitconfig` are located on Windows: [git on Windows - location of configuration files](https://www.onwebsecurity.com/configuration/git-on-windows-location-of-global-configuration-file.html).
Bottom line: place your config and keys where your main tool expects them to be and create symbolic links to help other tools find this stuff.
### Other
Other things to double-check:
* Did you add the SSH to your ssh-agent?
* Did you configure Mac OS Sierra or High Sierra to persistently store your passphrase in the keychain?
* Did you add the public key to GitHub?