Versions Compared

Key

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

...

If you are on campus or connected to the University of Iowa VPN then you can access the HPC systems as follows:

Panel
titleHelium (on campus or off campus with VPN)
ssh helium.hpc.uiowa.edu

...

 

No Format
titleNeon (on campus or off campus with VPN)
ssh neon.hpc.uiowa.edu

Since the standard port for ssh is often used to attempt to break in to systems, an alternate port is used if you are off-campus and not connected to the VPN.

Panel
titleHelium (off campus without VPN)

ssh -p 40 helium.hpc.uiowa.edu

...

 

No Format
titleNeon (off campus without VPN)
ssh -p 40 neon.hpc.uiowa.edu

If you are not connecting from a computer where you are not logged in with your HawkID then you will have to specify that the HawkID as the ssh client will try to login with the user name on the machine you are on. To do that, prepend your HawkID to the system name.

Panelnoformat
titlespecifying username for ssh
ssh -p 40 HawkID@neon.hpc.uiowa.edu

If on a Windows machine enter the appropriate values in the configuration fields of the client application. When you receive a password prompt enter your HawkID password. If all went well you should then be logged on to the selected HPC system.

Both The HPC systems have multiple login nodes (3 for Helium, 2 for Neon) so the above will connect you to one of the login nodes in a round-robin fashion. Generally speaking you do not have to worry about which login node you are on but be aware that different ssh sessions of yours could be running on different login nodes. The login nodes have both internal and external names with the internal name being the one visible in your shell. The mapping between internal and external names is pretty straight forward but is different between Helium and Neon.

helium-3.hpc.uiowa.edu
internal nameexternal name
helium-login-0-0.localhelium-1.hpc.uiowa.edu
helium-login-0-1.localhelium-2.hpc.uiowa.edu
helium-login-0-2.local
neon-login-0-1.localneon-1.hpc.uiowa.edu
neon-login-0-2.localneon-2.hpc.uiowa.edu

...