What is default username and password for JupyterHub?

Dims picture Dims · Nov 4, 2017 · Viewed 12.1k times · Source

I have installed JupyterHub and ran it. When I opened it's page, the following window appears:

enter image description here

What to enter there? Documentation is silent.

Answer

ssharma94 picture ssharma94 · Jan 30, 2020

If you are using docker image then after you run the container with this command:

docker run -d -p 8000:8000 --name jupyterhub jupyterhub/jupyterhub jupyterhub

bash into the running container:

docker exec -it jupyterhub bash

and then adduser test and follow the instructions. Once done then go to the browser enter:

http://localhost:8000/

Put the credentials in. It should work as it worked for me.