To configure the Condor Job Submission portlet, modify the
portlet deployment descriptor (portlet.xml).
If using the GridPort Demo Portal, this file will be located
in demo-portal/src/conf/portlet.xml.condor-job-submission.
If deploying the portlet to your own portal, the file will be located
in condor-job-submission/src/webapp/WEB-INF/portlet.xml
Configure the resources that users of this portlet can access.
Enter a resource list as the value of the resources parameter.
Resources entered in this list should be GRAM-enabled and running the gridFTP
server. In the following example, the machines bandera, blanco, and laredo are
assigned as resources.
<!-- resources configuration -->
<init-param>
<name>resources</name>
<value>bandera.tacc.utexas.edu,blanco.tacc.utexas.edu,laredo.tacc.utexas.edu</value>
</init-param>
...
<!-- Condor Configuration -->
<init-param>
<name>gp.condor.submission.host</name>
<value>laredo.tacc.utexas.edu</value>
</init-param>
<init-param>
<name>gp.condor.spool.directory.location</name>
<value>/home/mausolf/mycondor/</value>
</init-param>
<init-param>
<name>gp.condor.collector.url</name>
<value>http://129.114.4.22:9618</value>
</init-param>
...
The portlet is now configured to use Condor-G to submit batch jobs to remote resources on your grid. Note that after editing the configuration of this portlet, you must redeploy the portlet and restart Tomcat.