Fuzzball Documentation
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Accessing the Jupyter Notebook UI

To access the Jupyter Notebook through your browser, you will need access to the Fuzzball CLI. If you have not installed the Fuzzball CLI, please see the CLI install guide.

Using the Fuzzball CLI, we will use the Fuzzball workflow port-forward subcommand. Arguements required for this subcommand are the job name (jupyter), the port which the Jupyter Notebook is running on in the job, and the local port which it should be forwarded to. The command below forwards job port 8888 to local port 8889.

$ fuzzball workflow port-forward aa3b04f0-f245-4032-a7b1-5cef0acfaf6c jupyter 8889:8888
2024/06/18 14:58:56 port_forward.go:47: Listening on 127.0.0.1:8889
2024/06/18 14:59:03 port_forward.go:57: Accepting connection on 127.0.0.1:8889 from 127.0.0.1:38772
2024/06/18 14:59:03 port_forward.go:57: Accepting connection on 127.0.0.1:8889 from 127.0.0.1:38774
2024/06/18 14:59:04 port_forward.go:57: Accepting connection on 127.0.0.1:8889 from 127.0.0.1:38778
...

Once the port is successfully forwarded, you can access the Jupyter environment at http://localhost:8889 in your browser which brings up the Jupyter Notebook UI in the screenshot below.

Fuzzball create new workflow section