I can not access Jupyter notebook on Data science VM in Azure clould.
What I did:
- create a Data Science VM for Linux. Resource group, NSG, etc are newly created.
- follow the instruction of the command
dsvm-more-info
. That is- set
c.NotebookApp.password
(u'sha1:89this89is89a89fake89') - restart jupyter
- set
- access https://12.34.56.78:9999/ (The IP address is of course a fake.)
But I can not establish any connection to the server.
- SSH works without any problem.
- NSG looks OK: TCP/9999 is allowed from all (This is the default setting.)
- I tried to https://localhost:9999/ on the VM, but no connection is established.
- http://12.34.56.78:9999/ is not working. (Just in case.)
c.NotebookApp.allow_origin = '*'
changes nothing.- My subscription is a test version. Is this relevant?
- Following Jupyter Documentation, I created mykey.key and mycert.pem and
added absolute paths to the files in
jupyter_notebook_config.py
. But this does not help.