SSH Using VS Code

From UFRC
(Redirected from SSH Using VSCode)
Jump to navigation Jump to search

This guide will walk you through the process of using SSH in Visual Studio Code (VS Code) to remotely connect to HiPerGator, using an SSH key. To use VS Code from a terminal, see VS Code Remote Development

You can install VS Code at this page.

Step 1: Install the Remote Development extension

The first step is to install the "Remote Development" extension in VS Code, which can be done here.

Reload if necessary after it finishes installing.

Step 2: Configure the SSH key

Never share your private ssh keys even with Support staff. Your private ssh key works as your password and it must be kept in a non-shareable space.

Next, you'll need to configure the SSH key that you created earlier. To do this, follow these steps:

  1. In VS Code, press Ctrl + Shift + P (Windows) or Command + Shift + P (Mac) to open the command palette
  2. Type "Remote-SSH: Open Configuration File..." and select it from the list
  3. If you have not used the Remote Development extension before, you will be prompted to choose a "Connection Type". Choose "SSH".
  4. This will open a file called "ssh_config". Scroll down to the "Host" section and add lines mentioned in SSH Configuration if you haven't already.
  5. Save the file and close it.

Step 3: Connect to the remote server

VSDetails.png

Now that your SSH key is configured, you can connect to HPG using VS Code. To do this, follow these steps:

  1. Press Ctrl + Shift + P (Windows) or Command + Shift + P (Mac) to open the command palette
  2. Type "Remote-SSH: Connect to Host..." and select it from the list
  3. Select hpg from the list of hosts (the name you specified in the "Host" section of your ssh_config file)
  4. If this is the first time you're connecting to the server, you'll be prompted to confirm the server's fingerprint. Select "Yes" to continue.
  5. If prompted, enter your SSH key passphrase.
  6. You will need to select the details button in the button right. This will let you authenticate with Duo.
  7. Wait for the connection to be established. This may take a few seconds. When you're connected you will see a blue box in the bottom left corner of the VS Code window with the text "SSH: hpg".
  8. Visual Studio Code will connect to the remote server via SSH and open a new window in which you can edit files and run commands on the server. If a new window doesn't open automatically, you can open a new Terminal window, which should show that you're connected to a login node.

Step 4: Open a Remote Workspace

Once connected to the remote machine, you can open a remote workspace by clicking on the "Open Folder" button in the Remote Explorer panel and selecting a folder on the remote machine.

Step 5: Submit your jobs

While VS Code can be very convenient for viewing and editing files, the login node you are automatically connected to is not built for running jobs. Make sure you instead submit your jobs and connect to them.