This section demonstrates how to obtain and deploy the TDS in the Tomcat Servlet Container.

About WAR Files

  • WAR is short for Web ARchive.
  • By default, Tomcat will automatically unpack the WAR distribution into a directory of the same name upon deployment.
  • The unpacked directory is overwritten each time a new WAR file is deployed.

Downloading And Deploying thredds.war

Downloading And Renaming The TDS WAR File

  1. Download the TDS WAR file from Unidata’s web site (tds-5.4.jar for this example).

  2. Rename the WAR file.

    Tomcat automatically maps the name of the WAR file to the address in which it is accessed.
    E.g., a web application with WAR file foo.war will be accessible via this URL structure: http://localhost:8080/foo

    Unless you want the URL to your TDS to look like http://localhost:8080/tds-5.4 (ugly!) you need to rename the WAR file to match what is in the TDS META-INF/context.xml file.
    By default, that is thredds:

    <?xml version="1.0" encoding="UTF-8"?>
    <Context path="/thredds">
    </Context>
    

    The down-side of renaming the WAR file to merely thredds.war is that a quick glance at the WAR file will not tell you (the server administrator) which version of the TDS is deployed.

    To solve this, we can make use of a feature in the Tomcat Servlet Container that ignores anything after double hashtag symbols in the name of the WAR file.

    If we rename the WAR file to thredds##5.4.war, Tomcat will see this matching the context information in the META-INF/context.xml file and make the TDS accessible via this URL structure: http://localhost:8080/thredds (And we have the added benefit of seeing which version of the TDS is deployed when viewing the raw WAR file).

    # cd /tmp
    # ls -l
    total 274828
    -rw-r--r-- 1 root root  80027070 Oct 24 14:42 tds-5.4.jar
       
    # mv tds-5.4.war thredds##5.4.war
    # ls -l  
    total 274828
    -rw-r--r-- 1 root root  80027070 Oct 24 14:42 thredds##5.4.war
    

Deploying The TDS WAR File

  1. To deploy the TDS in Tomcat, place the renamed TDS WAR file in the ${tomcat_home}/webapps/ directory (${tomcat_home} is /usr/local in this example):

    # cd /usr/local/tomcat/webapps/
       
    # ls -l
    total 20
    drwxr-x--- 14 root root 4096 Oct 24 13:29 docs
    drwxr-x---  6 root root 4096 Oct 24 13:29 examples
    drwxr-x---  5 root root 4096 Oct 24 13:29 host-manager
    drwxr-x---  5 root root 4096 Oct 24 13:29 manager
    drwxr-x---  3 root root 4096 Oct 24 13:29 ROOT
        
    # cp /tmp/thredds##5.4.war .
    # ls -l
    total 78172
    drwxr-x--- 14 root root     4096 Oct 24 13:29 docs
    drwxr-x---  6 root root     4096 Oct 24 13:29 examples
    drwxr-x---  5 root root     4096 Oct 24 13:29 host-manager
    drwxr-x---  5 root root     4096 Oct 24 13:29 manager
    drwxr-x---  3 root root     4096 Oct 24 13:29 ROOT
    -rw-r--r--  1 root root 80027070 Oct 24 14:51 thredds##5.4.war
    
  2. Confirm the TDS has been deployed.

    If Tomcat is already running, wait a couple of seconds after placing the WAR file in ${tomcat_home}/webapps and then verify the thredds##5.4.war file was unpacked:

    # ls -l
    total 78176
    drwxr-x--- 14 root root     4096 Oct 24 13:29 docs
    drwxr-x---  6 root root     4096 Oct 24 13:29 examples
    drwxr-x---  5 root root     4096 Oct 24 13:29 host-manager
    drwxr-x---  5 root root     4096 Oct 24 13:29 manager
    drwxr-x---  3 root root     4096 Oct 24 13:29 ROOT
    drwxr-x---  8 root root     4096 Oct 24 14:51 thredds##5.4
    -rw-r--r--  1 root root 80027070 Oct 24 14:51 thredds##5.4.war
    

    Go to http://localhost:8080/thredds/ in your browser to verify the TDS has been deployed:

    THREDDS Distribution Catalog
    THREDDS Distribution Catalog

Creation Of TDS $CONTENT_ROOT

Remember the $CONTENT_ROOT directory we specified in the JVM options in the custom ${tomcat_home}/bin/setenv.sh file?

# TDS specific ENVARS
#
# Define where the TDS content directory will live
#   THIS IS CRITICAL and there is NO DEFAULT - the
#   TDS will not start without this.
#
CONTENT_ROOT=-Dtds.content.root.path=/data/content

The TDS $CONTENT_ROOT is a directory created by the TDS the first time it is deployed in the location specified by the aforementioned ${tomcat_home}/bin/setenv.sh file JVM settings.

The TDS uses this directory to store TDS-related configuration files that will persist between TDS WAR and Tomcat upgrades.

Confirm The Creation Of $CONTENT_ROOT

  1. Move to the location you’ve specified for $CONTENT_ROOT and do a long listing (/data in this example):

    # cd /data
    # ls -l
     total 148
     drwxr-x--- 3 root root  4096 Oct 24 14:43 content
    

    You should see a directory created by the TDS as specified in the JVM settings.

Next Step

Next, we’ll examine the Tomcat Manager Application and grant ourselves access to it in preparation for accessing restricted parts of the TDS.