(this is sortof a test to see if I can partake in this discussion)<br><br>Chuck -- Since &quot;smpd&quot; is the deamon/service running between the 2 systems, Perhaps adding that program to the windows firewall as an exception would be enough. I&#39;ll send details later once my PC is back up, but I recall you open Windows Firewall, and in there is either a tab or menu for exceptions, and in that area, you browse for the executable to add as the exception.<br>
<br><div class="gmail_quote">On Thu, Apr 22, 2010 at 9:20 AM, Charles Lawson <span dir="ltr">&lt;<a href="mailto:chucksolve@gmail.com">chucksolve@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div><br>To: Jayesh (mpich-discuss)</div>
<div> </div>
<div>My two PC&#39;s are both 32 bit. I found that the firewall was ON on both PC&#39;s. I turned the firewall OFF on both PC&#39;s and the run worked just fine. I did not need to use IP numbers.</div>
<div> </div>
<div>Thanks much for getting me to this point.</div>
<div> </div>
<div>Is there a setting of the firewalls I can make that is not as drastic as turning them off completely?  Is there a program name or port I can list as an &quot;exception&quot; in the firewall control window?</div>
<div> </div>
<div>-- Chuck</div>
<div>====== <br></div><div><div></div><div class="h5">
<div class="gmail_quote">On Thu, Apr 22, 2010 at 8:01 AM, <span dir="ltr">&lt;<a href="mailto:jayesh@mcs.anl.gov" target="_blank">jayesh@mcs.anl.gov</a>&gt;</span> wrote:<br>
<blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;" class="gmail_quote">Hi,<br><br># Do the two machines have the same architecture (are they both 32-bit machines) ?<br>
<br># Does &quot;mpiexec -hosts 2 Issac 1 Gauss 1 hostname&quot; work (It should just print the hostnames of the two machines)?<br>
<br># Does &quot;mpiexec -n 2 fpi.exe&quot; work on both machines ?<br><br># Do you have any firewall running on the machines ? If so, please try again after turning off the firewall.<br><br># Also try specifying the ipaddresses of the machines instead of hostnames (mpiexec -hosts 2 IPADDRESS_OF_ISSAC 1 IPADDRESS_OF_GAUSS 1 fpi.exe). You can get the ipaddress by typing &quot;ipconfig&quot; at the command prompt.<br>

<br> Let us know the results.<br><br>Regards,<br>Jayesh<br>
<div>----- Original Message -----<br>From: &quot;Charles Lawson&quot; &lt;<a href="mailto:chucksolve@gmail.com" target="_blank">chucksolve@gmail.com</a>&gt;<br>To: &quot;MPICH Discussion&quot; &lt;<a href="mailto:Mpich-discuss@mcs.anl.gov" target="_blank">Mpich-discuss@mcs.anl.gov</a>&gt;<br>

Cc: <a href="mailto:EvansBW@gmail.com" target="_blank">EvansBW@gmail.com</a><br></div>
<div>
<div></div>
<div>Sent: Wednesday, April 21, 2010 9:26:51 PM GMT -06:00 US/Canada Central<br>Subject: [mpich-discuss] Getting started in Win XP<br><br><br><br>I downloaded MPICH2 for Windows in Nov, 2009. I installed in on two PC&#39;s that I call Issac and Gauss that have access to my home wireless network. The installation file is mpich2-1.2-win-ia32.msi. Issac uses XP-Pro and Gauss uses XP-Home.<br>

<br>I purchased the Intel Fortran compiler, Vers 11.1, in July, 2009, for use on Issac, and I regularly use it there. I compiled the test case, fpi.f, on Issac. I (eventually) got a successful execution on a single PC by using the statement:<br>

<br>mpiexec -hosts 1 Issac 1 fpi.exe<br><br>I issued this command in a directory that contained mpiexec.exe and fpi.exe. I am the only user of this PC, and I do not use a password -- maybe I should say I have a blank password. Anyway the above command line didn&#39;t work initially because it asked for a password, and I didn&#39;t have one. I then set up a second User Name and gave it a password. Working under that User Name I again issued the above command line and I gave it the password when it asked for it, and it worked!! I was happy.<br>

<br>Moving on to try running this on my two PC&#39;s, I tried the command line:<br><br>mpiexec -hosts 2 Issac 1 Gauss 1 fpi.exe<br><br>I had Gauss running with a User Name that has a password (which may or may not have any bearing on the situation.)<br>

<br>This failed with the message:<br><br>launch failed: CreateProcess(fpi.exe) on &#39;Gauss&#39; failed, error 2 - The system cannot find the file specified.<br><br>Then I tried giving fpi.exe a full path. I used:<br><br>

mpiexec -hosts 2 Issac 1 Gauss 1 \\Issac\mpi\fpi.exe<br><br>That got further, but still not a complete execution. This responded with:<br>Process 0 of 2 is alive<br>Enter the number of intervals: (0 quits)<br>Process 1 of 2 is alive<br>

<br>I entered 50, but there was no response. I entered 0 and still no response, so I killed the run.<br><br>I added four Fortran write statements into the test case, fpi.f. Before and after the Call MPI_BCAST and before and after the Call MPI_REDUCE. Each write included the value of myid in the output. I recompiled that. I then tried the last command line above again. It responded with:<br>

<br>Process 0 of 2 is alive<br>Enter the number of intervals: (0 quits)<br>Process 1 of 2 is alive<br>Proc 1 before call MPI_BCAST &lt;= My debug write.<br>50 &lt;= My entry from the keyboard.<br>Proc 0 before call MPI_BCAST &lt;= My debug write.<br>

<br>and then just hung at that stage.<br><br>I conclude that fpi.exe is executing on both PC&#39;s, and on both PC&#39;s it has successfully gotten through calls to MPI_INIT, MPI_COMM_RANK and MPI_COMM_SIZE. The &quot;print ... alive&quot; statement functioned correctly on both PC&#39;s. Execution continued correctly up to the Call to MPI_BCAST. There it died. Why?<br>

<br>I will greatly apprciate suggestions as to how to get this test case to run correctly. I am well acquainted with Fortran programming, but not well acquainted with lower level operating system or networking components.<br>

<br>Hoping for help,<br><br>Chuck<br>=====<br><br><br><br><br><br></div></div>
<div>
<div></div>
<div>_______________________________________________<br>mpich-discuss mailing list<br><a href="mailto:mpich-discuss@mcs.anl.gov" target="_blank">mpich-discuss@mcs.anl.gov</a><br><a href="https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss</a><br>

_______________________________________________<br>mpich-discuss mailing list<br><a href="mailto:mpich-discuss@mcs.anl.gov" target="_blank">mpich-discuss@mcs.anl.gov</a><br><a href="https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss</a><br>

</div></div></blockquote></div><br>
</div></div></blockquote></div><br>