Changes between Version 1 and Version 2 of frontera


Ignore:
Timestamp:
07/23/21 06:16:27 (4 years ago)
Author:
Mathieu Morlighem
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • frontera

    v1 v2  
    1313and replace `YOURUSERNAME` by your TACC username.
    1414
     15Make sure to also include the following in your `~/.ssh/config`:
     16{{{
     17#!sh
     18Host *
     19   ControlMaster auto
     20   ControlPath ~/.ssh/sockets/%r@%h-%p
     21   ControlPersist yes
     22}}}
     23
     24It will allow you to use existing ssh connection for multiple sessions. As long as you have an active connection, ssh will not need a password or token to create a new session. You may need to `mkdir ~/.ssh/sockets` if this directory does not exist.
     25
     26
    1527Once this is done, you can ssh frontera by simply doing:
    16 
    1728{{{
    1829#!sh
     
    8495}}}
    8596
    86 Before you run your job, make sure to open a port first and enter the port number in md.cluster. Here is a handy alias:
     97Before you run your job, make sure to have an active open ssh connection to frontera so that you don't need to enter your password.
    8798
    88 {{{
    89 #!sh
    90 alias ls5tunnel='ssh -L 1099:localhost:22 ls5'
    91 }}}
    92 That will open port number 1099 that you can then use in ISSM so that you don't need to enter your password.
    93 
    94 to have a job of 2 nodes, 12 cpus for nodes, so a total of 24 cores.
    95 
    96 To submit a job on frontera, do:
    97 
     99To manually submit a job on frontera, do:
    98100 {{{
    99101#!m
     
    102104
    103105Now if you want to check the status of your job and the queue you are using, type in the bash with the frontera session:
    104 
    105106 {{{
    106107#!sh
     
    109110
    110111You can delete your job manually by typing:
    111 
    112112{{{
    113113#!sh