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


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

Legend:

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

    v22 v23  
    185185 Type exit and press the Enter key to end the SSH session.
    186186
     187==== Common issues and how to solve them
     188 * If you receive a message like the following:
     189{{{#!shell-session
     190The authenticity of host 'gw.orbit-lab.org (128.6.192.134)' can't be established.
     191ECDSA key fingerprint is SHA256:iLKtq2Z8wB3ADJdEyM1CwoU85gOeqIUyB4GOJ2YloQg.
     192Are you sure you want to continue connecting (yes/no)?
     193}}}
     194 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}}} and connection will proceed normally.
     195[[BR]]
     196 * If you receive a message like the following:
     197{{{#!shell-session
     198Permission denied (publickey).
     199}}}
     200 Try connecting again but manually specifying the location where your private SSH key is stored as in the following example:
     201{{{#!shell-session
     202ssh -i /path_to_where_key_is_stored/private_ssh_key_name your_cosmos_username@gw.orbit-lab.org
     203}}}
     204[[BR]]
    187205[[CollapsibleEnd]]
    188206
     
    358376 Type {{{exit}}} and press the Enter key to end the SSH session.
    359377
     378==== Common issues and how to solve them
     379 * If you receive a message like the following:
     380{{{#!shell-session
     381The authenticity of host 'gw.orbit-lab.org (128.6.192.134)' can't be established.
     382ECDSA key fingerprint is SHA256:iLKtq2Z8wB3ADJdEyM1CwoU85gOeqIUyB4GOJ2YloQg.
     383Are you sure you want to continue connecting (yes/no)?
     384}}}
     385 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}}} and connection will proceed normally.
     386[[BR]]
     387 * If you receive a message like the following:
     388{{{#!shell-session
     389Permission denied (publickey).
     390}}}
     391 Try connecting again but manually specifying the location where your private SSH key is stored as in the following example:
     392{{{#!shell-session
     393ssh -i /path_to_where_key_is_stored/private_ssh_key_name your_cosmos_username@gw.orbit-lab.org
     394}}}
     395
    360396[[CollapsibleEnd]]
    361397
    362 === Common issues and how to solve them
     398=== More common issues and how to solve them
    363399
    364400==== If you deleted the "@internal1" key from your profile
     
    381417
    382418 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