Hello,
every time I spawned a new jupyter server I am seeing this warning message in the output.log file:
[W 09:29:06.320 LabApp] WARNING: The notebook server is listening on all IP addresses and not using encryption. This is not recommended.
I was wondering if it’s possible to enable jupyter encrypted notebooks on OpenOnDemand.
So I edited my before.sh.erb:
openssl comand to generate mycert.pem and mykey.key
...
cat > "${CONFIG_FILE}" << EOL
c.NotebookApp.ip = '*'
c.NotebookApp.port = ${port}
c.NotebookApp.certfile = u'${HOME}/mycert.pem'
c.NotebookApp.keyfile = u'${HOME}/mykey.key'
...
rest of the file
But now when I launch the jupyter server, I am getting:
[W 12:21:05.158 LabApp] SSL Error on 9 (‘10.80.65.122’, 37846): [SSL: HTTP_REQUEST] http request (_ssl.c:1076)
[W 12:21:05.405 LabApp] SSL Error on 9 (‘10.80.65.122’, 37848): [SSL: HTTP_REQUEST] http request (_ssl.c:1076)
And the jupyter fails.
Any ideas?
Thanks a lot,
Daniel.