-
Notifications
You must be signed in to change notification settings - Fork 248
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
MrBayes container needs ssh or rsh installed #404
Comments
Hi, Thanks |
Thank you Olivier, I have created an issue there. This is a bit of a tough call (I suspect it is almost expected that tools use the host's |
Hi you have needs such as this and don't have time waiting for a fix, or just want to try, you can also create singularity image (or docker image, supported by singularity as docker is oci standard compliant) extending a conda base image (the FROM in dockerfile) and installing conda related package + required package. Something like, for docker: FROM miniconda |
Thanks, I'll give it a try. |
MrBayes container is missing
ssh
and/orrsh
. Because of this, the MPI version of the program can not be launched:The issue can be somewhat mitigated by exporting
OMPI_MCA_plm_rsh_agent=""
in the parent shell, but this leads to another undesired effect: in the absence ofssh
orrsh
OpenMPI can no longer launch across multiple nodes (i.e. parallel runs are only confined to cores within a single node where OpenMPI could get by usingself
mechanism).Please add
ssh
client to the container - this should nip the problem at the bud.The text was updated successfully, but these errors were encountered: