-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'.ipython/profile_ssh' not found #646
Comments
Can you include more code to reproduce the issue? Have you created the profile already ( |
Yes profile_ssh is created (profile_ssh.tar.gz). I'm trying to run controller on 192.168.5.71 and engines both on 192.168.5.71 and 192.168.5.218. Profile dir has been copied to 218 automatically (please look into profile_ssh_218.tar.gz). And controller tried to start engines on 218, but all the engines failed with '.ipython/profile_ssh' not found error. In jupyterlab I have following code to start a cluster: import ipyparallel as ipp
cluster = ipp.Cluster(profile_dir='/home/xd/.ipython/profile_ssh', cluster_id='')
client = cluster.start_and_connect_sync() And cell outputs:
I have to quickly cat ipengine-xxx.xxx.out files since they got removed right after process exits.
Now I'm stuck. As you can see from engine logs, engine started by controller automatically sets |
I'm sorry, I was sure I wrote a reply to this some time ago. I believe the crux is the combination of relative profile directory and work directory, If you can get away with not specifying work_dir (e.g. |
These files are removed because the output is already retrieved. You can view it with |
I'm trying to start cluster with ssh. The following error message appears in engine log:
It looks like I should set absolute path for 'ProfileDir': {'location': '.ipython/profile_ssh'}, but I don't know how to do that.
I've tried setting
c.ProfileDir.location = '/home/xd/.ipython/profile_ssh'
in ipcluster_config.py with no luck...Thanks.
The text was updated successfully, but these errors were encountered: