openmpi报错:Node names must be composed of a combination of ascii letters,digits,dots,and hyphen char

今天在复现模型结果的时候,遇到了nodename包含下划线“_”导致open mpi无法运行的问题,报错信息如下所示:
在这里插入图片描述

------------------------------------------------------------------------
While trying to create a regular expression of the node names
used in this application, the regex parser has detected the
presence of an illegal character in the following node name:
node: abcd_12
Node names must be composed of a combination of ascii letters,
digits, dots, and the hyphen (‘-’) character. See the following
for an explanation:
https://en.wikipedia.org/wiki/Hostname
Please correct the error and try again.
--------------------------------------------------------------------------
--------------------------------------------------------------------------
An internal error has occurred in ORTE:
[[30525,0],0] FORCE-TERMINATE AT (null):1 - error base/plm_base_launch_support.c(555)
This is something that should be reported to the developers.
--------------------------------------------------------------------------

根据报错提示,是因为nodename包含下划线“_”导致open mpi无法运行。上网搜了一圈解决方法,都是要修改hostname,感觉不太实际。
最后在官方github的 issues 9321 里找到了解决方法——将环境变量OMPI_MCA_regx设置为naive即可:

$ export OMPI_MCA_regx=naive

问题就此解决了!

另外,如果希望特定虚拟环境中始终满足这一条件,可提前设置好该环境中的变量

1)在当前环境的路径下的etc/conda/activate.d文件夹里,新建activate.sh

cd /root/miniconda3/envs/<env_name>/etc/conda/activate.d
vim activate.sh

写入环境变量:

ORIGINAL_OMPI_MCA_regx=$OMPI_MCA_regx
export OMPI_MCA_regx=naive

2)在当前环境的路径下的etc/conda/deactivate.d文件夹里,新建deactivate.sh

cd /root/miniconda3/envs/<env_name>/etc/conda/deactivate.d
vim deactivate.sh

重置环境变量:

export OMPI_MCA_regx=$ORIGINAL_OMPI_MCA_regx
unset ORIGINAL_OMPI_MCA_regx
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值