Changes between Version 76 and Version 77 of GENIExperimenter/Tutorials/jacks/GettingStarted_PartI/Procedure/DesignSetup


Ignore:
Timestamp:
02/04/16 15:26:46 (8 years ago)
Author:
Ben Newton
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/jacks/GettingStarted_PartI/Procedure/DesignSetup

    v76 v77  
    162162 </table>
    163163}}}
     164
    164165==== Mac OS X/Linux ====
    165  1. Save the NOT_PUTTY version of the private key on your computer. 
    166  1. Open a terminal
    167  1. Ensure that your private key has the right permissions by typing:
    168 {{{
    169 chmod 700 <private_key_file>
    170 }}}
    171 
    172  1. Run ssh by typing:
    173 {{{
    174 ssh -i <private key location> sshtest@pc3.geni.uchicago.edu -p 32826
    175 }}}
    176  1. Enter the passphrase ('''v3rify''') when prompted. Note: If you are prompted for a password then something went wrong. Make sure that all the information is correct.
    177 
    178  If you see the prompt sshtest@test:~$ you have successfully logged-in to the node.
    179 
     166 1. Now, click the <b>Download Private Key</b> button.   
     167 1. In a command line terminal, move your key to the appropriate location and ensure that it has the right permissions by typing (replacing ~/Downloads/ with actual location if necessary):
     168{{{
     169mv ~/Downloads/id_geni_ssh_rsa ~/.ssh/.
     170chmod 0600 ~/.ssh/id_geni_ssh_rsa
     171ssh-add ~/.ssh/id_geni_ssh_rsa
     172}}}
     173 1. Finally, add this key to the authentication agent by typing:
     174{{{
     175ssh-add ~/.ssh/id_geni_ssh_rsa
     176}}}
    180177
    181178==== Windows PuTTY ====
    182  1. You will use the PUTTY version of the private key.  Save the key on your computer. (It was converted from the standard format using the puttygen program. For more information look here)
    183  1. Run PuTTY. 
    184  1. On the Basic options screen, in the Host Name field enter: {{{sshtest@pc3.geni.uchicago.edu}}}
    185  1. In the Port field enter: '''32826'''
    186  1. Make sure Connection type is:  SSH
    187  1. Under the settings categories on the left navigate to Connection-> '''SSH ->Auth'''.
    188  1. Next to the "Private key file for authentication" field at the bottom, click '''Browse...''' and select the private key file you saved to your computer, and click '''Open'''.
    189  1. Click '''Open''' to establish the SSH connection.
    190  1. If prompted about whether you trust the host (key not cached in registry), click Yes. 
    191  1. When prompted for the Passphrase enter: '''v3rify'''
    192 
    193  If you see the prompt sshtest@test:~$ you have successfully logged-in to the node.
     179 1. Now, click the <b>Download PuTTY Key</b> button, save it to your computer.
     180 1. Later you will need to remember the location of the key. 
    194181
    195182==== Windows FireSSH ====
    196 After you Install FireSSH :
    197 
    198  1. Save the NOT_PUTTY version of the private key.
    199  1. Load this URL into firefox: '''ssh://sshtest@pc3.geni.uchicago.edu:32826'''
    200  1. In the pop-up window, enter the passphrase '''v3rify''' in the (mislabeled) password field, and click '''Browse...'''
    201  1. Select the private key, and click '''Open'''.
    202  1. Click '''OK'''.
    203  1. If prompted about whether you trust the host (host key not cached in registry), click Yes. 
    204 
    205  If you see the prompt sshtest@test:~$ you have successfully logged-in to the node.
    206 
     183 1. Now, click the <b>Download Private Key</b> button. 
     184 1. Later you will need to remember the location of the key.
    207185
    208186== 3.  Obtain Resources ==