0

Let me give the necessary context:

Security group details for Instance:

enter image description here

Jupyter Notebook Config File Snapshot:

enter image description here

When I run jupyter notebook this is what I get

enter image description here

And I cant connect to the Instance as I am getting this error:

enter image description here

Not sure what I am missing out or doing wrong. Any help would be appreciated.

  • Have you set [allow_origin](https://stackoverflow.com/questions/42848130/why-i-cant-access-remote-jupyter-notebook-server)? – Anon Coward Mar 10 '21 at 03:11

1 Answers1

0

You can run it in a headless mode, without browser:

jupyter notebook --no-browser

Then you can access it from your local workstation. Preferably over ssh tunnel for security reasons, rather then directly.

Marcin
  • 215,873
  • 14
  • 235
  • 294