Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is default username and password for JupyterHub?

Tags:

jupyterhub

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.

like image 259
Dims Avatar asked Nov 04 '17 15:11

Dims


People also ask

How do I access JupyterHub?

Users access JupyterHub through a web browser, by going to the IP address or the domain name of the server. The basic principles of operation are: The Hub spawns the proxy (in the default JupyterHub configuration) The proxy forwards all requests to the Hub by default.

How do I change my JupyterHub username and password?

How can I change my password? To change your password, you should login in your jupyterhub account, go to <your_server_ip>/hub/auth/change-password and change the password.

What is Jovyan password?

The username is "jovyan" and the password is "jupyter"


3 Answers

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.

like image 142
ssharma94 Avatar answered Oct 18 '22 23:10

ssharma94


The username is "jovyan" and the password is "jupyter"

like image 22
Varun Kumar Avatar answered Oct 19 '22 00:10

Varun Kumar


You can login using your machine credentials.

Most probably you would be using sudospawner that is configured by default.

So any sudo user can login.

like image 7
sat Avatar answered Oct 18 '22 22:10

sat