Changes between Version 2 and Version 3 of SimpleDataServicePart13-Deploy

Show
Ignore:
Author:
ppreddy@uab.edu (IP: 164.111.198.154)
Timestamp:
09/24/09 09:04:34 (2 months ago)
Comment:

dev:sds:add deploy from introduce steps

Legend:

Unmodified
Added
Removed
Modified
  • SimpleDataServicePart13-Deploy

    v2 v3  
    55 * [http://dev.uabgrid.uab.edu/wiki/SimpleDataServicePart13-SvcSkel caGrid data service generated by Introduce] 
    66 
    7 == Clean up the Container == 
     7== Deploy from Introduce == 
     8{{{ 
     9cd $CAGRID_LOCATION 
     10 
     11ant introduce 
     12 
     13}}} 
     14  
     15 1. Click on the ''Deploy Service'' 
     16 2. Choose a container to deploy from Tomcat/Globus/Jboss. The following shows an example deploy to Globus. 
     17 3. Fill in the Service properties details such as, Point of contact, Address 
     18 4. Click on Deploy. 
     19 5. Start globus container 
     20{{{ 
     21$GLOBUS_LOCATION/bin/globus-start-container -nosec 2>&1 > /tmp/gs-container.out & 
     22}}} 
     23 6. After a few minutes, check whether your service has been deployed to the target caGrid service 
     24{{{ 
     25$GLOBUS_LOCATION/bin/wsrf-query -a -z none -s http://index.training.cagrid.org:8080/wsrf/services/DefaultIndexService | grep "<ns8:Address xmlns:ns8" | cut -d'>' -f2 | cut -d'<' -f1 | sort > all_grid_services.txt 
     26}}} 
     27  
     28== Deploy Manually == 
     29 
     30=== Clean up the Container === 
    831 
    932 If you have other caGrid services deployed to tomcat, remove them to avoid conflicts in running the service. This can be done with 
    1437}}} 
    1538  
    16 == Deploy Globus to Tomcat == 
     39=== Deploy Globus to Tomcat === 
    1740 
    1841{{{ 
    2245}}} 
    2346 
    24 == Deploy Data Service == 
     47=== Deploy Data Service === 
    2548 
    2649 Navigate to the location where you saved the Introduce created data service in [http://dev.uabgrid.uab.edu/wiki/SimpleDataServicePart13-SvcSkel#GenerateDomainModel step 6 of generating the domain model]. If this data service is named ''Person'' and is located at ''/home/user/Person'', then do the following: 
    3154}}} 
    3255 
    33 == Start Tomcat == 
     56=== Start Tomcat === 
    3457 
    3558{{{