I'm currently trying to setup a remote cluster on a group of servers I own using the ipyparallel library. I figured that if I share the $IPYTHONDIR between all ipcontrollers, ipengines and notebook that everything would just connect and work, but this is not the case for my current setup.
What I'm attempting to accomplish is such that a ipcontroller and ipengines are sitting on my cluster waiting for a jupyter notebook to connect to the controller and use it for it's cluster computing resources.
Currently I cannot get my notebook to connect to my controller even though all ports are open, the servers are directly accessible, and the IPYTHONDIR is shared.
When I open my notebook and go to the clusters tab I see my parallel profile, but it's not started. Which is odd because the ipcontroller and ipengines are already started and waiting for a connection from the notebook.
This boils down to:
- Is it possible to run a notebook on a different server than the ipcontroller?
- If the above is possible, why can I not get the notebook to connect to the cluster, and instead when I click start on the profile it simply makes a local cluster.
Thanks!