Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tunnel to notebook instructions #13

Merged
merged 3 commits into from
May 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,16 @@ sc = SparkContext(conf=conf)
2>/dev/null
```

## Connecting to the Jupyter Notebook

### Tunneling to the Jupyter Notebook
```bash
ssh -f -N -L localhost:44041:10.58.2.201:4041 [email protected]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
ssh -f -N -L localhost:44041:10.58.2.201:4041 tgu@login1.berkeley.kbase.us
ssh -f -N -L localhost:44041:10.58.2.201:4041 <kbase_developer_username>@login1.berkeley.kbase.us

... where kbase_developer_username is an Argonne account starting with ac.

hah, the suggestion box can't handle triple backticks

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

```

### Accessing the Jupyter Notebook
Navigate to [http://localhost:44041/](http://localhost:44041/) in your browser.


Enjoy your Spark journey!


Loading