Download and Install Titan - Titan - Foundation 25.1 - Foundation 25.1 - Ready - Perceptive Content - external - Perceptive-Content/Titan/Foundation-25.1/Titan-Installation-and-Setup-Guide/Download-and-Install-Titan - 2025-07-21

Titan Installation and Setup Guide

Platform
Perceptive Content
Product
Titan
Release
Foundation 25.1
License
ft:locale
en-US

Download

To download Perceptive product installation files, complete the following steps.

  1. Visit Hyland Community site.
  2. From the menu, click Support and then under Software Downloads select Perceptive Downloads.
  3. Find and download the installer file corresponding to the version to be installed.
    Note: New and updated documentation and help topics are regularly published to the documentation website at support.hyland.com.

Install

To install Titan, complete the following steps.

  1. After downloading the application zip file to a temporary directory on your computer, create a subdirectory in the webapps directory of the Tomcat server. You may name the subdirectory with any name. We recommend using titan, which is used in the examples of this document.
    Note: The default location for the webapps directory is [drive:]\Program Files\Apache Software Foundation\[Tomcat Installation]\webapps\.
  2. Extract the files to the subdirectory you just created.
  3. Navigate to the Tomcat\conf directory and open the server.xml file in a text editor.
  4. In the Host section, add the RewriteValve following the example below.
    <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> 
         ... insert the following line anywhere in this Host tag ... 
         <Valve className="org.apache.catalina.valves.rewrite.RewriteValve" /> 
    </Host>
  5. Save the server.xml file and close the text editor.
  6. Navigate to the Tomcat\conf\Catalina\localhost directory, create a rewrite.config configuration file, and then open it in a text editor.
  7. Add the following two lines, where titan is the name of the subdirectory you created in step 1.
    RewriteCond %{REQUEST_PATH} !-f 
    RewriteRule ^/titan/(.*) /titan/index.html 
    Note: If you already have Titan deployed in this Tomcat instance then this file will already have one or more entries. You must re-add both lines for the new subdirectory name.
  8. Save the rewrite.config file and close the text editor.
  9. Restart Tomcat.
  10. Navigate to the Titan \webapps\titan directory.
  11. Open the index.html file in a text editor.
  12. Update the <base href="/"> tag in line 3 to include the subdirectory name you used in step 1. You must include the leading and trailing forward slashes.
    <!DOCTYPE html><html lang="en"><head> 
      <meta charset="utf-8">
      <base href="/titan/">
    
  13. Save the index.html file and close the text editor.