The TDS configuration file (content/thredds/threddsConfig.xml) allows the TDS
administrator to set a number of parameters that control the behavior of the TDS. Most of these
parameters will default to reasonable default values. However, a number of them allow you to
describe your server, provide contact information, and change the "theme" of server generated
HTML pages.
Information describing your TDS installation and providing contact information is configured
in the serverInformation element of the TDS configuration file. This includes
Here is what the default version of the serverInformation element looks like
<serverInformation>
<name>Initial TDS Installation</name>
<logoUrl>threddsIcon.gif</logoUrl>
<logoAltText>Initial TDS Installation</logoAltText>
<abstract>Scientific Data</abstract>
<keywords>meteorology, atmosphere, climate, ocean, earth science</keywords>
<contact>
<name>Support</name>
<organization>My Group</organization>
<email>support@my.group</email>
<phone></phone>
</contact>
<hostInstitution>
<name>My Group</name>
<webSite>http://www.my.group/</webSite>
<logoUrl>myGroup.gif</logoUrl>
<logoAltText>My Group</logoAltText>
</hostInstitution>
</serverInformation>
Server element of the WMS GetCapabilities document:
Server element of the WCS GetCapabilities document.Change the default server information in the TDS configuration file
http://localhost:8080/thredds/serverInfo.html
[thredds@workshop00 ~]$ cd ${TOMCAT_HOME}/content/thredds
[thredds@workshop00 ~]$ vi threddsConfig.xml // Use the editor of your choice
[thredds@workshop00 ~]$ cd ${TOMCAT_HOME}/bin
[thredds@workshop00 ~]$ ./shutdown.sh
[thredds@workshop00 ~]$ ./startup.sh
http://localhost:8080/thredds/serverInfo.html
Server and institution names, logos, and links given in the above section are used in all TDS generated HTML pages.
You can also specify the CSS files and several icons used in the HTML pages. These are
configured in the htmlSetup element of the TDS configuration file.
The following shows the default values used if the htmlSetup
element is not configured:
<htmlSetup>
<cssPage>tds.css</cssPage>
<cssCatalog>tdsCat.css</cssCatalog>
<folderIconUrl>folder.gif</folderIconUrl>
<folderIconAlt>Folder</folderIconAlt>
<datasetIconUrl>dataset.gif</datasetIconUrl> <!-- Not currently used. -->
<datasetIconAlt>Dataset</datasetIconAlt> <!-- Not currently used. -->
</htmlSetup>
NOTE: URLs may be absolute or relative, relative URLs must be
relative to the webapp URL, i.e., http://server:port/thredds/.
More details are given in the threddsConfig.xml Reference document.
This document is maintained by Unidata and was last updated
Send comments to THREDDS support.