
----
The conf directory contains a client.properties file that allows you to use either the training grid or the production grid.
{note}client.properties by default is set up with the training grid as the target grid, so if you're utilizing the training grid feel free to move on to part 5.
{note}
# Open the file *conf/client.properties*
# To set up the target grid to the training grid, comment out the production grid lines with '#' and remove any '#' from the beginning of training grid lines as shown below.
{code:java}# Training
sync.description=conf/sync-description.xml
default.dorian.service.url=https://dorian.training.cagrid.org:8443/wsrf/services/cagrid/Dorian
default.index.service.url=http://index.training.cagrid.org:8080/wsrf/services/DefaultIndexService
default.grouper.service.url=https://grouper.training.cagrid.org:8443/wsrf/services/cagrid/GridGrouper
#production
#sync.description=conf/prod-sync-description.xml
#default.index.service.url=http://cagrid-index.nci.nih.gov:8080/wsrf/services/DefaultIndexService
#default.dorian.service.url=https://cagrid-dorian.nci.nih.gov:8443/wsrf/services/cagrid/Dorian
#default.grouper.service.url=https://cagrid-gridgrouper.nci.nih.gov:8443/wsrf/services/cagrid/GridGrouper
# Globus Credential save path
proxy.save.file=user.proxy
{code}
# To set up the target grid to the production grid, comment out the training grid lines with '#' and remove any '#' from the beginning of production grid lines as shown below.
{code:java}# Training
#sync.description=conf/sync-description.xml
#default.dorian.service.url=https://dorian.training.cagrid.org:8443/wsrf/services/cagrid/Dorian
#default.index.service.url=http://index.training.cagrid.org:8080/wsrf/services/DefaultIndexService
#default.grouper.service.url=https://grouper.training.cagrid.org:8443/wsrf/services/cagrid/GridGrouper
#production
sync.description=conf/prod-sync-description.xml
default.index.service.url=http://cagrid-index.nci.nih.gov:8080/wsrf/services/DefaultIndexService
default.dorian.service.url=https://cagrid-dorian.nci.nih.gov:8443/wsrf/services/cagrid/Dorian
default.grouper.service.url=https://cagrid-gridgrouper.nci.nih.gov:8443/wsrf/services/cagrid/GridGrouper
# Globus Credential save path
proxy.save.file=user.proxy
{code}
# Save the file
{scrollbar}