Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The table below describes the available RCTF PODs, servers and currently available groups.

POD nameDescriptionRCTF delegatesCompute serversStorage serverUnix Groups
Lambowitz /CCBB POD

Shared POD for use by CCBB affiliates and the Alan Lambowitz lab.

Contact Hans Hofmann, CCBB Director, for more information.

 

  • Rebecca Young Brim (Hofmann lab)
  • Douglas Wu (Lambowitz lab)
  • Katie Lyons (Hillis lab)
  • lambcomp01.ccbb.utexas.edu
    • Dell PowerEdge R410
    • dual 4-core/8-thread CPUs
    • 64 GB RAM
  • ccbbcomp01.ccbb.utexas.edu
    • Dell PowerEdge R420
    • dual 4-core CPUs
    • 96 GB RAM
  • ccbbcomp02.ccbb.utexas.edu
    • Dell PowerEdge R720
    • dual  6-core/12-thread CPUs
    • 192 GB RAM
lambstor01.ccbb.utexas.edu

  Lambowitz groups:
Lambowitz, LambGuest

CCBB groups:
Cannatella, Hawkes, Hillis, Hofmann , Jansen

 

Instructional groups:
FRI-BigDataBio-2016


GSAF POD

Shared POD for use by GSAF customers. 2TB Work area allocation available for participating groups.

Contact Mike Wilson, GSAF Director, for more information.

  • Dhivya Arasappan
  • Anna Battenhouse
  • gsafcomp01.ccbb.utexas.edu
  • gsafcomp02.ccbb.utexas.edu
    • Dell PowerEdge R410
    • dual 4-core/8-thread CPUs
    • 64 GB RAM
  • gsafcbig01.ccbb.utexas.edu
    • Dell PowerEdge R720
    • dual  6-core/12-thread CPUs
    • 192 GB RAM
  • gsafcbig02.ccbb.utexas.edu (aka fourierseq.icmb.utexas.edu)
    • Dell PowerEdge R720
    • dual  8-core/16-thread CPUs
    • 192 GB RAM
gsafstor01.ccbb.utexas.edu

GSAF customer groups:
Atkinson, Barrick, Browning, Cannatella, Crews, Ellington, GSAFGuest, Kirisits, Leibold, LiuHw, Lloyd, Matz, Mueller, Ochman, Press, SSung, Sullivan

GSAF internal & instructional groups:
GSAF, 
BioComputing2017, CCBB_Workshops_1,   FRI-BigDataBio-2016

Iyer PODSingle-lab POD for members of the Vishy Iyer lab
  • Anna Battenhouse
  • iyercomp02.ccbb.utexas.edu (aka dragonfly.icmb.utexas.edu)
    • Dell PowerEdge R420
    • dual 4-core CPUs
    • 96 GB RAM
  • iyercomp03.ccbb.utexas.edu (aka adler3.icmb.utexas.edu)
    • Dell PowerEdge R900
    • quad 4-core CPUs
    • 128 GB RAM
  • iyercomp04.ccbb.utexas.edu (aka katydid.icmb.utexas.edu)
    • Dell PowerEdge R410
    • dual 4-core/8-thread CPUs
    • 64 GB RAM
iyerstor01.ccbb.utexas.eduIyer
Marcotte PODSingle-lab POD for members of the Edward Marcotte lab
  • Kevin Drew
  • marccomp01.ccbb.utexas.edu (aka hopper.icmb.utexas.edu)
    • Dell PowerEdge R730
    • dual 18-core/36-thread CPUs
    • 768 GB RAM
  • marccomp02.ccbb.utexas.edu (aka ada.icmb.utexas.edu)
    • Dell PowerEdge R610
    • dual 4-core/8-thread CPUs
    • 32 GB RAM
  • marccomp03.ccbb.utexas.edu (aka perutz.ccbb.utexas.edu)
    • Dell PowerEdge R610
    • dual 4-core/8-thread CPUs
    • 24 GB RAM
marcstor02.ccbb.utexas.eduMarcotte
Wilke PODFor use by members of the Claus Wilke lab and the AG3C collaboration
  • Ashley Teufel
  • wilkcomp01.ccbb.utexas.edu
  • wilkcomp02.ccbb.utexas.edu
    • Dell PowerEdge R930
    • quad 14-core/28-thread CPUs
    • 1 TB RAM

wilkstor01.ccbb.utexas.eduWilke, AG3C
Chen/Wallingford PODShared POD for members of the Jeffrey Chen and John Wallingford labs
  • Qingxin Song (Chen lab)
  • Robert Huebner (Wallingford lab)
  • chencomp01.ccbb.utexas.edu
    • Dell PowerEdge R230
    • single 4-core/8-thread CPU
    • 16 GB RAM
  • chencomp02.ccbb.utexas.edu
    • Dell PowerEdge R410
    • dual 4-core/8-thread CPUs
    • 64 GB RAM
chenstor01.ccbb.utexas.eduChen, Wallingford
Georgiou/WCAAR PODShared POD for members of the Georgiou lab and the Waggoner Center for Alcoholism & Addiction Research (WCAAR)
  • Russ Durrett (Georgiou lab)
  • Dayne Mayfield (WCAAR)
  • wcarcomp01.ccbb.utexas.edu
    • Dell PowerEdge R430
    • dual 16-core/32-thread CPUs
    • 256 GB RAM

georstor01.ccbb.utexas.eduGeorgiou, WCAAR

Multiple POD group membership

...

  1. On the machine and account you want to ssh/sftp FROM (e.g. your laptop), generate a ssh key pair if you don't already have one:

    Code Block
    languagebash
    if [ ! -fd ~/.ssh ] ; then mkdir ~/.ssh ; fi
    chmod 700 ~/.ssh
    cd ~/.ssh
    if [ ! -f id_rsa ] ; then ssh-keygen -b 4096 -t rsa ; fi

    Use the default answers for ssh-keygen, and do not specify a password.

  2. Copy your public key to the server you want to login TO (e.g. one of your POD compute nodes):

    Code Block
    languagebash
    ssh-copy-id user@hostname

    If you are prompted to accept the SSH Host Key for the node you are connecting to, type "yes: to do so.
    Note you will be asked for your password for the user@hostname, so enter it when prompted.

  3. Login to the machine to make sure it is working properly:

    Code Block
    languagebash
    ssh user@hostname
  4. If you are prompted for a password, then something went wrong with the setup.  Most likely, it is file permissions on your home directory (you must not have group or world write access to your home directory or your .ssh directory).  If you have multiple ssh keys (rsa, dsa, etc) on the machine you are connecting FROM then it could also be using the wrong key to connect.

...