【发布时间】:2015-12-18 16:00:00
【问题描述】:
我正在尝试让 MPI 在 Centos 7 操作系统上的小型集群上运行。防火墙阻止它运行。这是我得到的错误:
$ mpirun -np 30 -hostfile hosts.txt mpi_sample_program/mpitest
------------------------------------------------------------
A process or daemon was unable to complete a TCP connection
to another process:
Local host: marcher5
Remote host: ***.***.***.***.***
This is usually caused by a firewall on the remote host. Please
check that any firewall (e.g., iptables) has been disabled and
try again.
------------------------------------------------------------
--------------------------------------------------------------------------
ORTE was unable to reliably start one or more daemons.
This usually is caused by:
* not finding the required libraries and/or binaries on
one or more nodes. Please check your PATH and LD_LIBRARY_PATH
settings, or configure OMPI with --enable-orterun-prefix-by-default
* lack of authority to execute on one or more specified nodes.
Please verify your allocation and authorities.
* the inability to write startup files into /tmp (--tmpdir/orte_tmpdir_base).
Please check with your sys admin to determine the correct location to use.
* compilation of the orted with dynamic libraries when static are required
(e.g., on Cray). Please check your configure cmd line and consider using
one of the contrib/platform definitions for your system type.
* an inability to create a connection back to mpirun due to a
lack of common network interfaces and/or no route found between
them. Please check network connectivity (including firewalls
and network routing requirements).
--------------------------------------------------------------------------
当我使用 sudo systemctl disable firewalld 禁用防火墙时,MPI 工作正常。 我一直在尝试添加一个规则,允许 MPI 在不关闭防火墙的情况下运行,但它还没有工作。 我能够使用 sudo iptables -A INPUT -s -j ACCEPT 来做到这一点并且它有效。但是现在由于 Centos 7,我必须使用 firewall-cmd。 您建议我在不损害集群安全性的情况下做什么。我应该添加一条规则以允许我的节点之间的所有流量吗?
我当前的 firewall-cmd 配置是:
$ firewall-cmd --list-all
work (default, active)
interfaces: eno1
sources:
services: dhcpv6-client ipp-client ssh
ports:
masquerade: no
forward-ports:
icmp-blocks:
rich rules:
【问题讨论】:
标签: linux mpi firewall centos7