Reputation: 33
Can you tell me what is the use of jupyter cluster. I created jupyter cluster,and established its connection.But still I'm confused,how to use this cluster effectively?
Thank you
Upvotes: 3
Views: 13643
Reputation: 880
With Jupyter Notebook cluster, you can run notebook on the local machine and connect to the notebook on the cluster by setting the appropriate port number. Example code:
ssh username@ip_address
to server.jupyter notebook --no-browser --port=7800
run ssh -N -f -L localhost:8001:localhost:7800 username@ip_address
of server. http://localhost:8001/
Upvotes: 5