1

I setup an azure dsvm using ssh keys instead of a username/password combo. Now, I am not sure how to log into the Jupyter hub because its asking for a username and password. What should the password be since I never entered one.

user2022284
  • 413
  • 1
  • 9
  • 22

1 Answers1

3

JupyterHub does not support SSH keys, so you will need to set up a password on your local DSVM account to enable this login.

After ssh into the DSVM:

sudo passwd USERNAME NEWPASS

now try to login to jupyterhub with USERNAME NEWPASS as your credentials.

Alternatively, you might tunnel Jupyter over SSH: create a tunnel for, say, port 8080, run "jupyter notebook --no-browser --port=8080" remotely, then access the notebooks at "http://localhost:8080".

justin cress
  • 1,745
  • 5
  • 24
  • 35
Paul Shealy
  • 734
  • 3
  • 8