Changes between Version 21 and Version 22 of User Guide/Remote Access/SSH


Ignore:
Timestamp:
Apr 5, 2023, 5:13:43 PM (14 months ago)
Author:
jkol
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • User Guide/Remote Access/SSH

    v21 v22  
    282282
    283283 9. Type {{{exit}}} and press the Enter key to end the SSH session.
    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]]
    300284
    301285[[CollapsibleEnd]]
     
    374358 Type {{{exit}}} and press the Enter key to end the SSH session.
    375359
    376 
    377 [[BR]]
    378 ==== Common issues and how to solve them
    379  * TODO
    380360[[CollapsibleEnd]]
    381361
    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
     370rm ~/.ssh/id_rsa
     371rm ~/.ssh/id_rsa.pub
     372ssh-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
     379cat ~/.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
     388The authenticity of host 'gw.orbit-lab.org (128.6.192.134)' can't be established.
     389ECDSA key fingerprint is SHA256:iLKtq2Z8wB3ADJdEyM1CwoU85gOeqIUyB4GOJ2YloQg.
     390Are 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