Test globus access to PRAGMA grid sites
From PRAGMAgridWIKI
In general
After sites have enabled you access thru globus, you can test your access to each site following the instructions 4.b in the user guide.
Don't wait until all sites are ready. Run your application with a few sites first, then add more as more sites are ready. Any problem with access to a site, please email the site technical contact and Cindy.
In general, you should be able to get your application run on a douzen clusters in the grid.
Test many sites at once with script
Below is a sample script file to test job submission thru globus to many clusters in the grid. You can customize it by changing the commands and cluster names.
Assume the script file is named usertest.sh, you will run it by issuing the command
$ source usertest.sh
The grid-proxy-init will require you to input passphrase.
Note that if there is a network problem with a particular site, the command to the site will hang. To break out the hang and make it continue with next site, simply control-c twice.
#!/bin/bash grid-proxy-init echo globus-job-run sakura.hpcc.jp/jobmanager-fork /bin/hostname globus-job-run sakura.hpcc.jp/jobmanager-fork /bin/hostname echo globus-job-run fsvc001.asc.hpcc.jp/jobmanager-fork /bin/hostname globus-job-run fsvc001.asc.hpcc.jp/jobmanager-fork /bin/hostname echo globus-job-run pragma001.grid.sinica.edu.tw/jobmanager-fork /bin/hostname globus-job-run pragma001.grid.sinica.edu.tw/jobmanager-fork /bin/hostname echo globus-job-run pop.cs.binghamton.edu/jobmanager-fork /bin/hostname globus-job-run pop.cs.binghamton.edu/jobmanager-fork /bin/hostname echo globus-job-run pragma.sdg.ac.cn/jobmanager-fork /bin/hostname globus-job-run pragma.sdg.ac.cn/jobmanager-fork /bin/hostname echo globus-job-run server1.itsc.cuhk.edu.hk/jobmanager-fork /bin/hostname globus-job-run server1.itsc.cuhk.edu.hk/jobmanager-fork /bin/hostname echo globus-job-run gdlab.gscas.ac.cn/jobmanager-fork /bin/hostname globus-job-run gdlab.gscas.ac.cn/jobmanager-fork /bin/hostname echo globus-job-run supernode2.hcmut.edu.vn/jobmanager-fork /bin/hostname globus-job-run supernode2.hcmut.edu.vn/jobmanager-fork /bin/hostname echo globus-job-run bkluster.hpcc.hut.edu.vn/jobmanager-fork /bin/hostname globus-job-run bkluster.hpcc.hut.edu.vn/jobmanager-fork /bin/hostname echo globus-job-run exodus.ihpc.a-star.edu.sg/jobmanager-fork /bin/hostname globus-job-run exodus.ihpc.a-star.edu.sg/jobmanager-fork /bin/hostname echo globus-job-run venus.ioit-hcm.ac.vn/jobmanager-fork /bin/hostname globus-job-run venus.ioit-hcm.ac.vn/jobmanager-fork /bin/hostname echo globus-job-run grid1.jlu.edu.cn/jobmanager-fork /bin/hostname globus-job-run grid1.jlu.edu.cn/jobmanager-fork /bin/hostname echo globus-job-run jupiter.gridcenter.or.kr/jobmanager-fork /bin/hostname globus-job-run jupiter.gridcenter.or.kr/jobmanager-fork /bin/hostname echo globus-job-run pragma.lzu.edu.cn/jobmanager-fork /bin/hostname globus-job-run pragma.lzu.edu.cn/jobmanager-fork /bin/hostname echo globus-job-run nucleus.mygridusbio.net.my/jobmanager-fork /bin/hostname globus-job-run nucleus.mygridusbio.net.my/jobmanager-fork /bin/hostname echo globus-job-run nacona00.nchc.org.tw/jobmanager-fork /bin/hostname globus-job-run nacona00.nchc.org.tw/jobmanager-fork /bin/hostname echo globus-job-run grid64.hpcc.nectec.or.th/jobmanager-fork /bin/hostname globus-job-run grid64.hpcc.nectec.or.th/jobmanager-fork /bin/hostname echo globus-job-run guava.ngpp.ngp.org.sg/jobmanager-fork /bin/hostname globus-job-run guava.ngpp.ngp.org.sg/jobmanager-fork /bin/hostname echo globus-job-run cafe01.exp-net.osaka-u.ac.jp/jobmanager-fork /bin/hostname globus-job-run cafe01.exp-net.osaka-u.ac.jp/jobmanager-fork /bin/hostname echo globus-job-run tea01.exp-net.osaka-u.ac.jp/jobmanager-fork /bin/hostname globus-job-run tea01.exp-net.osaka-u.ac.jp/jobmanager-fork /bin/hostname echo globus-job-run rocks-52.sdsc.edu/jobmanager-fork /bin/hostname globus-job-run rocks-52.sdsc.edu/jobmanager-fork /bin/hostname echo globus-job-run rocks-153.sdsc.edu/jobmanager-fork /bin/hostname globus-job-run rocks-153.sdsc.edu/jobmanager-fork /bin/hostname echo globus-job-run sunyata.thaigrid.or.th/jobmanager-fork /bin/hostname globus-job-run sunyata.thaigrid.or.th/jobmanager-fork /bin/hostname echo globus-job-run syntagma.dim.uchile.cl/jobmanager-fork /bin/hostname globus-job-run syntagma.dim.uchile.cl/jobmanager-fork /bin/hostname echo globus-job-run malicia.super.unam.mx/jobmanager-fork /bin/hostname globus-job-run malicia.super.unam.mx/jobmanager-fork /bin/hostname echo globus-job-run amber.uohyd.ernet.in/jobmanager-fork /bin/hostname globus-job-run amber.uohyd.ernet.in/jobmanager-fork /bin/hostname echo globus-job-run volatile.ece.uprm.edu/jobmanager-fork /bin/hostname globus-job-run volatile.ece.uprm.edu/jobmanager-fork /bin/hostname echo globus-job-run komolongma.ece.uprm.edu/jobmanager-fork /bin/hostname globus-job-run komolongma.ece.uprm.edu/jobmanager-fork /bin/hostname echo globus-job-run aurora.cs.usm.my/jobmanager-fork /bin/hostname globus-job-run aurora.cs.usm.my/jobmanager-fork /bin/hostname echo globus-job-run hawk.usm.my/jobmanager-fork /bin/hostname globus-job-run hawk.usm.my/jobmanager-fork /bin/hostname echo globus-job-run ocikbpra.unizh.ch/jobmanager-fork /bin/hostname globus-job-run ocikbpra.unizh.ch/jobmanager-fork /bin/hostname
