If you are using Flack/Omni, add an ExoGENI VM and specify its image "Name" as the URL above and its "version" as the hash above. If you are using Flukes the image URL and Hash above.
First, try creating a single VM on one of the ExoGENI racks. It will work fine with several VMs connected by a broadcast network but try a single VM first. Once the VM has booted login to the VM and follow the directions. If you use the instance type XOXLarge you will have 4 cores, 12 GB memory, and 75 GB disk.
Let me know if/when you have problems.
****Note these directions are in a README located in /home/mpiuser/README.helloMPIWorld***
Step 1: Become the mpiuser user
> su mpiuser
> cd ~
Step 2: Add your compute nodes to your known_hosts files
For each compute node in your slice (including the first node)
> ssh-keyscan IP_OF_COMPUTE_NODE >> ~/.ssh/known_hosts
Example: ssh-keyscan 172.16.0.1 >> ~/.ssh/known_hosts
Step 3: Add your compute nodes to your machines file
For each compute node in your slice
> echo IP_OF_COMPUTE_NODE >> machines
Example: echo 172.16.0.1 >> machines
Step 4: Compile the application
> /opt/bin/mpicc helloMPIWorld.c
Step 5: Copy the executable to each other worker
> scp a.out IP_OF_COMPUTE_NODE:.
Step 6: Run the application
> /opt/bin/mpirun -n 16 -machinefile machines a.out
Hello world from process 2 of 16 on node Node0
Hello world from process 6 of 16 on node Node0
Hello world from process 0 of 16 on node Node0
Hello world from process 14 of 16 on node Node0
Hello world from process 8 of 16 on node Node0
Hello world from process 10 of 16 on node Node0
Hello world from process 3 of 16 on node Node1
Hello world from process 12 of 16 on node Node0
Hello world from process 9 of 16 on node Node1
Hello world from process 5 of 16 on node Node1
Hello world from process 7 of 16 on node Node1
Hello world from process 4 of 16 on node Node0
Hello world from process 15 of 16 on node Node1
Hello world from process 1 of 16 on node Node1
Hello world from process 11 of 16 on node Node1
Hello world from process 13 of 16 on node Node1