Skip to content

Commit 631c0e4

Browse files
authored
Merge pull request #140 from VectorInstitute/XkunW-patch-1
Update SSH tunnel guide for Killarney
2 parents 6b357cc + 37af4c5 commit 631c0e4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,6 @@ Once the inference server is ready, you can start sending in inference requests.
124124
## SSH tunnel from your local device
125125
If you want to run inference from your local device, you can open a SSH tunnel to your cluster environment like the following:
126126
```bash
127-
ssh -L 8081:172.17.8.29:8081 [email protected] -N
127+
ssh -L 8081:10.1.1.29:8081 [email protected] -N
128128
```
129-
Where the last number in the URL is the GPU number (gpu029 in this case). The example provided above is for the vector cluster, change the variables accordingly for your environment
129+
The example provided above is for the Vector Killarney cluster, change the variables accordingly for your environment. The IP address for the compute nodes on Killarney follow `10.1.1.XX` pattern, where `XX` is the GPU number (`kn029` -> `29` in this example).

docs/user_guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,9 @@ Once the inference server is ready, you can start sending in inference requests.
334334

335335
If you want to run inference from your local device, you can open a SSH tunnel to your cluster environment like the following:
336336
```bash
337-
ssh -L 8081:172.17.8.29:8081 [email protected] -N
337+
ssh -L 8081:10.1.1.29:8081 [email protected] -N
338338
```
339-
Where the last number in the URL is the GPU number (gpu029 in this case). The example provided above is for the vector cluster, change the variables accordingly for your environment
339+
The example provided above is for the Vector Killarney cluster, change the variables accordingly for your environment. The IP address for the compute nodes on Killarney follow `10.1.1.XX` pattern, where `XX` is the GPU number (`kn029` -> `29` in this example). Similarly, for Bon Echo it's `172.17.8.XX`, where `XX` is from `gpuXX`.
340340

341341
## Python API Usage
342342

0 commit comments

Comments
 (0)