Here is what I'm doing now:
- From my Windows laptop, I SSH into Linux server via Putty: IP address is
11.11.11.111
Start up Jupyter notebook:
nohup jupyter notebook --ip=0.0.0.0 --no-browser &
- Terminal output shows Jupyter notebook is running at:
http://(11.11.11.111 or 127.0.0.1):8889/?token=blahblahblah
Start single machine client in a new notebook:
from dask.distributed import Client client = Client()
Printing client
shows that the dashboard is located at http://127.0.0.1:8787/status
, however, I cannot find the dashboard at that URL. I've also tried http://11.11.11.111:8787/status
but that didn't work either.
I'm still able to run everything in my notebook with Dask Dataframes just fine, but I just can't figure out how to view the dashboard. Bokeh
is installed on server and I'm running Jupyter Notebook through Anaconda.