Changes between Version 5 and Version 6 of MPICH2_Install


Ignore:
Timestamp:
Mar 6, 2008, 4:49:51 PM (16 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MPICH2_Install

    v5 v6  
    129129    While connecting to the other nodes first time, you need to enter 'yes'.[[BR]]
    130130    Since you will be automatically login as root to all the other nodes without typing any password.[[BR]]
    131     If any error occurs, just remove /root/.ssh/known_hosts, and re-ssh.
     131{{{
     132root@client-01:~# ssh root@client-02
     133The authenticity of host 'client-02 (192.168.180.132)' can't be established.
     134RSA key fingerprint is 27:17:fa:34:63:c4:a7:c1:ec:25:84:76:6d:03:2d:96.
     135Are you sure you want to continue connecting (yes/no)? yes
     136}}}
     137  * '''Repeat the operations above to all the other nodes.'''(If you got 10+ machines, the will be a "big work")
     138  * If any error occurs, just remove /root/.ssh/known_hosts, and re-ssh.
     139 * '''Step 6''' : Start MPICH2
     140  * The easist way to setup a parallelized computing environment is to issue:
     141{{{
     142root@client-01:~# mpdboot -n 3 -f /root/mpich2-1.0.7rc1/mpd.hosts
     143}}}
     144  * Check the mpich2 nodes.
     145{{{
     146root@client-01:~# mpdtrace
     147client-01
     148client-03
     149client-02
     150}}}
     151
     152=== 3. Conclusion ===
     153 * This is the most simple parallel computing environment, just for teaching and testing.
     154 * Do not expect that your job can be sbmitted to it and run faster! They are just virtual machines.
    132155
    133156----