284 | | |
285 | | [[BR]] |
286 | | ==== Common issues and how to solve them |
287 | | * If you receive a message like the following: |
288 | | {{{ |
289 | | The authenticity of host 'gw.orbit-lab.org (128.6.192.134)' can't be established. |
290 | | ECDSA key fingerprint is SHA256:iLKtq2Z8wB3ADJdEyM1CwoU85gOeqIUyB4GOJ2YloQg. |
291 | | Are you sure you want to continue connecting (yes/no)? |
292 | | }}} |
293 | | |
294 | | or |
295 | | |
296 | | || [[Image(putty_alert.png, 250px)]] || |
297 | | |
298 | | This is a normal message that occurs when your computer connects via SSH to another that it has never connected to before or if the "fingerprint" of the other machine changed (due to replacement or reconfiguration). Simply type {{{yes}}} or click "Yes" and connection will proceed normally. |
299 | | [[BR]] |
382 | | |
383 | | |
384 | | |
| 362 | === Common issues and how to solve them |
| 363 | |
| 364 | ==== If you deleted the "@internal1" key from your profile |
| 365 | |
| 366 | As long as you have at least one public key configured in your profile, use your SSH client to connect to {{{gw.orbit-lab.org}}} and run the following commands there. You do not need to make a reservation in the scheduler for this. |
| 367 | |
| 368 | '''Make sure you are connected to gw.orbit-lab.org and running all of the following commands on gw.orbit-lab.org! |
| 369 | {{{#!shell-session |
| 370 | rm ~/.ssh/id_rsa |
| 371 | rm ~/.ssh/id_rsa.pub |
| 372 | ssh-keygen -t rsa -C "@internal1" |
| 373 | }}} |
| 374 | |
| 375 | Press 'Enter' at every prompt so that the default filename (id_rsa) and no password is used. |
| 376 | |
| 377 | Then type the following command: |
| 378 | {{{#!shell-session |
| 379 | cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys |
| 380 | }}} |
| 381 | |
| 382 | The internal key should now be restored. |
| 383 | |
| 384 | ==== Warning about "authenticity of host can't be established" |
| 385 | |
| 386 | If you receive a message like the following: |
| 387 | {{{ #!shell-session |
| 388 | The authenticity of host 'gw.orbit-lab.org (128.6.192.134)' can't be established. |
| 389 | ECDSA key fingerprint is SHA256:iLKtq2Z8wB3ADJdEyM1CwoU85gOeqIUyB4GOJ2YloQg. |
| 390 | Are you sure you want to continue connecting (yes/no)? |
| 391 | }}} |
| 392 | |
| 393 | or |
| 394 | |
| 395 | || [[Image(putty_alert.png, 250px)]] || |
| 396 | |
| 397 | This is a normal message that occurs when your computer connects via SSH to another that it has never connected to before or if the "fingerprint" of the other machine changed (due to replacement or reconfiguration). Simply type {{{yes}}} or click "Yes" and connection will proceed normally. |
| 398 | [[BR]] |
| 399 | |
| 400 | |
| 401 | |
| 402 | |