a) 启动集群命令:
i.
mpdboot -n 4 -f mpd.hosts–v
集群具有4台设备
Host文件为~/目录下的mpd.hosts文件
ii.
mpdtrace –l
查看集群主机名和端口号
iii.
Mpdallexit
关闭mpd服务
b) 通过mpiexec运行,用于MPD的基本参数:
i.
Mpiexec –n <num_nodes> <executable>
<num_nodes>:程序需要运行的进程数
<executable>:为可执行程序名字
单机模式多进程运行某一程序:
E.g.
Mpiexec –n 12 test
ii.
Mpiexec –n <num_nodes>-machinefile <host_file> <executable file path>
<num_nodes>:程序需要运行的进程数
<host_file>:集群host文件
格式为:
Master
Slave1
Slave2
<executable filepath>:在集群上所有节点相同路径下的相同程序
集群模式多进程运行某一程序:
E.g.
mpiexec -n 12 -machinefile mf/home/hadoop/MPI_SourceCode/test/test_mpi