Skip to content

Commit 3dd7652

Browse files
committed
torch dtn
1 parent 92ab884 commit 3dd7652

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/cloud/03_hpc_bursting_to_cloud/01_intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The file systems are independent, so you must copy data to the GCP location.
5252

5353
To copy data, you must first start an interactive job. Once started, you can copy your data using scp from the HPC Data Transfer Nodes (torch-dtn). Below is the basic setup to copy files from Torch to your home directory while you are in an interactive bursting job:
5454
```sh
55-
scp <NetID>@torch-dtn.hpc.nyu.edu:/path/to/files /home/<NetID>/
55+
scp <NetID>@dtn.torch.hpc.nyu.edu:/path/to/files /home/<NetID>/
5656
```
5757

5858

docs/hpc/02_connecting_to_hpc/01_connecting_to_hpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following sections will outline basic ways to connect to the Torch cluster.
1616

1717
To connect to HPC systems, you have to configure the SSH client on your machine. We recommend the following configuration:
1818
```sh
19-
Host dtn.hpc.nyu.edu
19+
Host dtn.torch.hpc.nyu.edu
2020
User <NetID>
2121
StrictHostKeyChecking no
2222
ServerAliveInterval 60

docs/hpc/03_storage/03_data_transfers.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Attached to the NYU HPC cluster Torch, the Torch Data Transfer Node (gDTN) are
99

1010
### Data Transfer Node Access
1111
The HPC cluster filesystems include `/home`, `/scratch`, `/archive` and the [HPC Research Project Space](./05_research_project_space.mdx) are available on the gDTN. The Data-Transfer Node (DTN) can be accessed in a variety of ways
12-
- From NYU-net and the High Speed Research Network: use SSH to the DTN hostname `gdtn.hpc.nyu.edu`
12+
- From NYU-net and the High Speed Research Network: use SSH to the DTN hostname `gdtn.torch.hpc.nyu.edu`
1313
- From the Torch cluster (e.g., the login nodes): the hostname can be shortened to `gdtn`
1414
:::info
1515
For example, to log in to a DTN from the Torch cluster, to carry out some copy operation, and to log back out, you can use a command sequence like:
@@ -30,10 +30,10 @@ logout
3030
Please use Data Transfer Nodes (DTNs) with these tools. While one can transfer data while on login nodes, it is considered a bad practice because it can degrade the node's performance.
3131
:::
3232

33-
Sometimes these two tools are convenient for transferring small files. Using the DTNs does not require to set up an SSH tunnel; use the hostname `dtn.hpc.nyu.edu` for one-step copying. See below for examples of commands invoked on the command line on a laptop running a Unix-like operating system:
33+
Sometimes these two tools are convenient for transferring small files. Using the DTNs does not require to set up an SSH tunnel; use the hostname `dtn.torch.hpc.nyu.edu` for one-step copying. See below for examples of commands invoked on the command line on a laptop running a Unix-like operating system:
3434
```sh
35-
scp HMLHWBGX7_n01_HK16.fastq.gz jdoe55@dtn.hpc.nyu.edu:/scratch/jdoe55/
36-
rsync -av HMLHWBGX7_n01_HK16.fastq.gz jdoe55@dtn.hpc.nyu.edu:/scratch/jdoe55/
35+
scp HMLHWBGX7_n01_HK16.fastq.gz jdoe55@dtn.torch.hpc.nyu.edu:/scratch/jdoe55/
36+
rsync -av HMLHWBGX7_n01_HK16.fastq.gz jdoe55@dtn.torch.hpc.nyu.edu:/scratch/jdoe55/
3737
```
3838
In particular, rsync can also be used on the DTNs to copy directories recursively between filesystems, e.g. (assuming that you are logged in to a DTN),
3939
```sh

docs/hpc/12_tutorial_intro_shell_hpc/02_connecting_to_hpc.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ If you are using PuTTY on Windows, download and use `pageant` as the SSH agent.
227227
## Modifying your .ssh/config file
228228
Please add the following lines to your `~/.ssh/config` file:
229229
```
230-
Host login.torch.hpc.nyu.edu dtn.hpc.nyu.edu
230+
Host login.torch.hpc.nyu.edu dtn.torch.hpc.nyu.edu
231231
StrictHostKeyChecking no
232232
ServerAliveInterval 60
233233
ForwardAgent yes

0 commit comments

Comments
 (0)