Changes between Initial Version and Version 1 of VisIt/runon_Juqueen/manual_connection


Ignore:
Timestamp:
10/15/15 13:52:42 (9 years ago)
Author:
Jens Henrik Goebbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VisIt/runon_Juqueen/manual_connection

    v1 v1  
     1=== Steps On Local Machine (manual)
     2
     3If you do not want to run VisIt's metadata server on the login node, you can connect to your simulation manually. \\
     4Do not try it, if you are not an expert (or have some spare time left). \\
     5
     6=== connect with GUI to simulation
     7==== 1) tunnel port on compute node of rank 0 to local machine (forward connection)
     8{{{
     9#!ShellExample
     10ssh -f <USER>@juqueen.fz-juelich.de -L 5609:<COMPUTE-NODE>:5609 -N
     11}}}
     12* <USER>@juqueen.fz-juelich.de is your login to the front node
     13* -L <LOCAL-PORT>:<COMPUTE-NODE>:<REMOTE-PORT> defines the start and end of the tunnel
     14* -f tells ssh to go into the background
     15* -N instructs OpenSSH to not execute a command on the remote system
     16example:
     17{{{
     18#!ShellExample
     19ssh -f jhpc1234@juqueen.fz-juelich.de -L 5609:134.94.143.222:5609 -N
     20}}}
     21
     22==== 2) copy/modify sim2 file to client
     23{{{
     24#!ShellExample
     25scp <USER>@juqueen.fz-juelich.de:.visit/simulations/<SIM2 FILE> .
     26}}}
     27
     28example:
     29{{{
     30#!ShellExample
     31host R63-IF-J02
     32port 5609
     33key 9fd458909abe0f26
     34comment My Simulation
     35}}}
     36
     37modify to:
     38{{{
     39#!ShellExample
     40host localhost
     41port 5609
     42key 9fd458909abe0f26
     43comment My Simulation
     44}}}
     45
     46==== 3) open sim2 file on with !VisIt GUI
     47
     48==== 4) tunnel port on local machine to compute node of rank 0 (backward connection)