Skip to content

Commit

Permalink
Merge pull request #247 from gridai/fix-tutorial-ssh-command
Browse files Browse the repository at this point in the history
Fixed ssh command required for connection to session
  • Loading branch information
Esther Quansah authored May 18, 2022
2 parents 4aa6dc9 + 94c0bce commit 6759a2a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/getting-started/typical-workflow-cli-user.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,12 @@ You need to do this step **only once**
# make the ssh key (if you don't have one)
ssh-keygen -b 2048 -t rsa -f ~/.ssh/grid_ssh_creds -q -N ""

# add the key to the ssh-agent (to avoid having to explicitly state key on each connection)
# to start the agent, run the following
eval $(ssh-agent)
# then add the key
ssh-add ~/.ssh/grid_ssh_creds

# add the keys to grid
grid ssh-keys add key_1 ~/.ssh/grid_ssh_creds.pub
```
Expand Down Expand Up @@ -230,7 +236,7 @@ Once the session is ready, you have three options to interact with it:
- ssh from your local
- ssh + VSCode

Let's login to the Session via SSH.
Let's login to the Session via SSH.

```yaml
grid session ssh resnet-debugging
Expand Down

0 comments on commit 6759a2a

Please sign in to comment.