Connecting to SCRC Clusters
This guide explains how to connect to the NYU Stern Center for Research Computing (SCRC) cluster login nodes using a Secure Shell (SSH) connection from various operating systems (Mac, Linux, Windows). It also covers the requirement for using the NYU VPN when connecting from off-campus.
Overview: Command Line Interface (CLI)
The primary method for accessing SCRC servers is through a Command Line Interface (CLI) using a terminal application. The CLI is a text-based interface where you interact with the remote Linux host by typing commands.
You will use your Stern NetID and password to authenticate.
SCRC Login Hosts
You can connect to either of the following SCRC remote login hosts:
rnd.scrc.nyu.edu
vleda.scrc.nyu.edu
VPN Requirement for Off-Campus Access
If you are connecting from a location outside the NYU network (e.g., your home), you must first connect to the NYU VPN. Once the VPN connection is established, you can proceed with the SSH connection steps as if you were on the NYU network.
If you are already connected to the NYU network (e.g., on campus), you do not need the VPN and can connect directly.
Connecting from Mac/Linux
- Open your Terminal application (e.g., Terminal on Mac, or any terminal emulator on Linux).
-
Use the
ssh
command followed by your Stern NetID, the@
symbol, and the hostname of one of the login nodes.Replace
your_netid
with your actual Stern NetID (e.g.,xy12
).bash ssh your_netid@rnd.scrc.nyu.edu
Alternatively, you can connect to the
vleda
node:bash ssh your_netid@vleda.scrc.nyu.edu
-
When prompted, enter your Stern password. Note that the password will not be displayed on the screen as you type.
Connecting from Windows
Windows users have several options for connecting via SSH:
-
Windows Command Prompt (
cmd
) / PowerShell: Modern versions of Windows 10 and 11 include a built-in SSH client.- Open Command Prompt or PowerShell.
- Use the
ssh
command exactly as shown in the Connecting from Mac/Linux section.bash ssh your_netid@rnd.scrc.nyu.edu
- Enter your Stern password when prompted.
-
Windows Subsystem for Linux (WSL2): If you have WSL2 installed (available on Windows 10 and later), you can install a Linux distribution (like Ubuntu) and use its native terminal and
ssh
client.- Open your WSL terminal (e.g., Ubuntu).
- Use the
ssh
command as shown in the Connecting from Mac/Linux section.bash ssh your_netid@rnd.scrc.nyu.edu
- Enter your Stern password when prompted.
- Note: If using WSL2, you might encounter issues accessing the internet when the Cisco AnyConnect VPN (installed via
.exe
) is active. A possible solution is to uninstall the standard Cisco AnyConnect client and install the AnyConnect app from the Microsoft Store, then configure the VPN connection using NYU IT's provided settings.
-
PuTTY: PuTTY is a popular free and open-source SSH and telnet client for Windows.
Using PuTTY
- Download PuTTY: Download the latest installer from the official PuTTY Download Page.
- Install PuTTY: Run the downloaded installer and follow the on-screen instructions.
- Launch PuTTY: Open the installed PuTTY application.
- Configure Session:
- In the Host Name (or IP address) field, enter one of the SCRC login hostnames:
rnd.scrc.nyu.edu
- or
vleda.scrc.nyu.edu
- Ensure the Port is set to
22
. - Ensure the Connection type is set to
SSH
. - (Optional) You can save these settings for future use by typing a name in the Saved Sessions field (e.g., "SCRC RND") and clicking Save.
- In the Host Name (or IP address) field, enter one of the SCRC login hostnames:
- Connect: Click the Open button.
- Security Alert (First Connection): The first time you connect to a host, PuTTY will display a security alert dialog box starting with "The server's host key is not cached...". This is normal. Click Yes (or Accept) to trust the host and cache its key.
- Login: A terminal window will open. You will be prompted to log in:
- At the
login as:
prompt, type your Stern NetID and press Enter. - At the
password:
prompt, type your Stern password and press Enter. (The password will not be shown as you type).
- At the
You should now be logged into the SCRC cluster and see a command line prompt (e.g., [your_netid@rnd ~]$
). You can now enter Linux commands.