{"id":24380,"date":"2024-02-15T14:53:34","date_gmt":"2024-02-15T22:53:34","guid":{"rendered":"https:\/\/docs.extraview.com\/v25\/book\/install-configure-tomcat-1\/"},"modified":"2025-04-08T16:20:07","modified_gmt":"2025-04-08T23:20:07","slug":"install-configure-tomcat-1","status":"publish","type":"page","link":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/","title":{"rendered":"Install &#038; Configure Tomcat"},"content":{"rendered":"<p class=\"textGreyBg\">We recommend installing Tomcat 9.0 to work with this release of ExtraView.<\/p>\n<p>The following steps will install Tomcat into the directory <span class=\"fixedWidthFont\">$BASE\/apache-tomcat-9.0.xx<\/span>.<\/p>\n<p class=\"required\">Note that Tomcat is required, even if you are intending to use Microsoft IIS as your web server. IIS does not provide the same functionality as Tomcat.<\/p>\n<h3>Installation<\/h3>\n<p><span class=\"fixedWidthFont\">cd\u00a0 $INSTALL<\/span><br \/>\n<span class=\"fixedWidthFont\">cp apache-tomcat-9.0.xx.tar.gz $BASE<br \/>\ncd $BASE<br \/>\ngunzip apache-tomcat-9.0.xx.tar.gz<\/span><br \/>\n<span class=\"fixedWidthFont\">tar xvf apache-tomcat-9.0.xx.tar<br \/>\nrm apache-tomcat-9.0.xx.tar<\/span><\/p>\n<h3>Configuration<\/h3>\n<p>We can remove *.bat files since this is a Linux installation.<\/p>\n<p><span class=\"fixedWidthFont\">cd $BASE\/apache-tomcat-9.0.xx\/bin\u00a0<\/span><br \/>\n<span class=\"fixedWidthFont\">rm *.bat<br \/>\nchmod 744 startup.sh shutdown.sh catalina.sh<\/span><\/p>\n<p>The following steps will set memory parameters for Tomcat and configure it to run with the correct Java.<\/p>\n<p>We generally do not recommend setting the Xmx parameter above 1024 megs at maximum. If your system usage is predicted to be high enough that you will require more memory, we strongly suggest installing a clustered set of multiple Tomcat nodes under a load-balanced Apache web server.<\/p>\n<p><span class=\"fixedWidthFont\">vi $BASE\/apache-tomcat-9.0.xx\/bin\/catalina.sh<\/span><\/p>\n<p>Add the following lines:<\/p>\n<p><span class=\"fixedWidthFont\">JAVA_HOME=\/usr\/local\/extraview\/jre1.8.0_xx<br \/>\nCATALINA_HOME=\/usr\/local\/extraview\/apache-tomcat-8.0.xx<br \/>\nCATALINA_OPTS=&#8221;-server -Xms96m -Xmx1024m -XX:MaxPermSize=190m -Djava.awt.headless=true -Dfile_encoding=UTF-8 -Dcom.sun.management.jmxremote -Djava.locale.providers=COMPAT &#8211;add-exports=java.base\/sun.security.action=ALL-UNNAMED &#8211;add-exports=java.desktop\/jax.imageio.spi=ALL-UNNAMED&#8221;<\/span><\/p>\n<p>If you have an existing installation and the CATALINA_OPTS parameter is different, please consolidate the options above with the existing ones.<\/p>\n<p>If you are using Java 9.0 and above, you will need to add the parameter &#8220;-Djava.local.providers=COMPAT&#8221; as well<\/p>\n<p><span style=\"color: #aa0000; font-family: courier, monospace;\">CATALINA_OPTS=&#8221;-server -Xms96m -Xmx1024m -XX:MaxPermSize=190m -Djava.awt.headless=true -Dfile_encoding=UTF-8 -Dcom.sun.management.jmxremote -Djava.locale.providers=COMPAT&#8221;<\/span><\/p>\n<p><span class=\"fixedWidthFont\">vi $BASE\/apache-tomcat-9.0.xx\/bin\/startup.sh<br \/>\n$BASE\/apache-tomcat-9.0.xx\/bin\/shutdown.sh<\/span><\/p>\n<p>Add the following lines to each script:<\/p>\n<p><span class=\"fixedWidthFont\">JAVA_HOME=\/usr\/local\/extraview\/jre1.8.0_xx<br \/>\nCATALINA_HOME=\/usr\/local\/extraview\/apache-tomcat-9.0.xx<\/span><\/p>\n<p>Tomcat is now installed in the directory <span class=\"fixedWidthFont\">$BASE\/apache-tomcat-9.0.xx<\/span>. You can start\/stop tomcat using the following commands:<\/p>\n<p><span class=\"fixedWidthFont\">$BASE\/apache-tomcat-9.0.xx\/bin\/startup.sh<br \/>\n$BASE\/apache-tomcat-9.0.xx\/bin\/shutdown.sh<\/span><\/p>\n<p>If you enter the URL of the server using port 8080 into a browser, for example http:\/\/server.domain.com:8080, you should get a test page similar to the following.<\/p>\n<p><img decoding=\"async\" src=\"\/v25\/extraview-media\/images\/ig\/20.0\/solaris-unix-linux\/tomcat-2.png\" alt=\"\" width=\"90%\" \/><\/p>\n<h3><span style=\"font-size: 12pt;\">Tomcat 9.x Configuration<\/span><\/h3>\n<p>Edit the <code>tomcat\/conf\/context.xml<\/code> file<\/p>\n<ol>\n<li>\n<p style=\"background-color: #ffffff;\">At the bottom of the file, add the the two following lines, before the last line wich reads\u00a0<code>&lt;\/Context&gt;<\/code> :<\/p>\n<p style=\"background-color: #ffffff;\"><code>&lt;!-- Force use of the old Cookie processor (because this Tomcat version uses RFC6265 Cookie Specification) --&gt;<br \/>\n&lt;CookieProcessor className=\"org.apache.tomcat.util.http.LegacyCookieProcessor\" \/&gt;<\/code><\/p>\n<\/li>\n<li>Locate the following section in the Tomcat configuration file named <code>&lt;tomcat_home&gt;\/conf\/context.xml<\/code>:<code>&lt;!-- Uncomment this to disable session persistence across Tomcat restarts --&gt;<br \/>\n&lt;!--<br \/>\n&lt;Manager pathname=\"\" \/&gt;<br \/>\n--&gt; <\/code>and alter to use the setting by removing the comments\u00a0<code>&lt;!--<\/code>\u00a0and\u00a0<code>--&gt;<\/code>;.\u00a0 This section will now read:<code>&lt;!-- Disable session persistence across Tomcat restarts --&gt;<br \/>\n&lt;Manager pathname=\"\" \/&gt;<\/code><\/li>\n<\/ol>\n<p>Edit the<code> tomcat\/conf\/server.xml <\/code>file<\/p>\n<ol>\n<li>Locate the AJP 1.3 Connector section and remove the comments surrounding the <code>Connector <\/code>entry.\u00a0 I.e. remove\u00a0\u00a0<code>&lt;!--<\/code>\u00a0and <code>--&gt;<\/code>\n<div><code>\u00a0 \u00a0 &lt;!-- Define an AJP 1.3 Connector on port 8009 --&gt;<br \/>\n&lt;!--<\/code><\/div>\n<div><code>\u00a0 \u00a0 &lt;Connector protocol=\"AJP\/1.3\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0address=\"::1\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0port=\"8009\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0redirectPort=\"8443\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \/&gt;<br \/>\n--&gt;<\/code><\/div>\n<\/li>\n<li>If your servers are using IPV4 addresses (most common), you should modify the <code>address=\"::1\"<\/code> value in the Connector parameter to force Tomcat to use IPV4.\u00a0 Set it to\u00a0 <code>0.0.0.0<\/code>\n<div><code>\u00a0 \u00a0 &lt;!-- Define an AJP 1.3 Connector on port 8009 --&gt;<br \/>\n&lt;Connector protocol=\"AJP\/1.3\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0address=\"0.0.0.0\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0port=\"8009\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0redirectPort=\"8443\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0\/&gt;<\/code><\/div>\n<\/li>\n<li>Starting with Tomcat 8.5, the standard installation altered the way in which several characters were accepted as valid URL characters.\u00a0 These are characters such as <code>|<\/code>, <code>{ <\/code>and <code>}<\/code>.\u00a0 Some of these characters have long been used within the ExtraView application.\u00a0 To enable Tomcat&#8217;s handling of these characters, modify the <code>Connector <\/code>setting in the <code>conf\/server.xml<\/code> file by adding the following entry:<code>relaxedQueryChars=\"{}|\"<\/code>So that you have:<code>\u00a0 \u00a0 &lt;Connector protocol=\"AJP\/1.3\"<br \/>\naddress=\"0.0.0.0\"<br \/>\nport=\"8009<span style=\"color: #aa0000; font-family: courier, monospace;\">\"<br \/>\n<\/span>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0redirectPort=\"8443\"<br \/>\nrelaxedQueryChars=\"{}|<code>\"<br \/>\n<code><code>\u00a0 \u00a0 \u00a0\/&gt;<\/code><\/code><\/code><\/code><\/li>\n<li>Newer versions of Tomcat 8.x\/9.x have a mandatory security measure that must be configured.\u00a0 This measure rejects all calls to the Tomcat server unless a secret word is part of the request, with requests typically being sent by the Apache web server.\u00a0 Without this configuration, the Tomcat server will apear to spin without responding to the request or will respond with a 404 Not Found error.\u00a0 To configure this feature:\n<ol>\n<li>In the <code>server.xml file<\/code>, ensure the section for the AJP 13 connector has the new parameter:<code>secret=\"<em>changeme<\/em>\"<\/code><code>&lt;Connector protocol=\"AJP\/1.3\"<br \/>\naddress=\"0.0.0.0\"<br \/>\nport=\"8009\"<br \/>\nredirectPort=\"8443\"<br \/>\nrelaxedQueryChars=\"{}|\"<br \/>\nsecret=\"<em>changeme<\/em>\"<br \/>\n\/&gt;<\/code>Note the secret word should be changed to your own secret word.<\/li>\n<li>Now, in the <code>workers.properties <\/code>file where you set the AJP13 connector, add the parameter:<code>worker.tomcat1.secret = <em>changeme<\/em><\/code>Note the secret word should match the entry you created in the <code>server.xml<\/code> file.<\/li>\n<\/ol>\n<\/li>\n<li>Again, in the <code>server.xml<\/code> file, add this entry to ensure that responses from large databases do not swamp user&#8217;s browsers:<code>server.xml set maxParameterCount=10000<\/code><\/li>\n<\/ol>\n<p>After making these configuration changes, stop and restart the tomcat process to pick up the changes.<\/p>\n<h3>Using the APIs to Insert Large Amounts of Text<\/h3>\n<p>When using an API to insert very large amounts of text within a single issue you may encounter an error within the API function, exhibiting as a null pointer exception that originates within the Tomcat application server.\u00a0 This error may be remedied by inserting the modifying the Connector entry within the Tomcat configuration file.\u00a0 An example of the altered configuration is:<\/p>\n<div><code>&lt;Connector port=\"8082\" protocol=\"HTTP\/1.1\" URIEncoding=\"UTF-8\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0connectionTimeout=\"20000\" maxPostSize=\"209715200\"<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0redirectPort=\"8442\" maxParameterCount=\"1000000\" <\/code><\/div>\n<div><code>\/&gt;<\/code><\/div>\n<p>The <code>maxPostSize <\/code>parameter increases the size of Tomcat&#8217;s buffer used to process the API command.<\/p>\n<h3>Use of WAR Files with Apache Tomcat<\/h3>\n<p>Normally, Tomcat explodes any existing WAR files and uses the extracted contents. However, Tomcat also supports the use of unexploded WAR files.<\/p>\n<p>To configure Tomcat for use of unexploded WAR files, update the server.xml file to prevent explosion of WAR file as follows:<\/p>\n<p>Find the line:<\/p>\n<p><code>unpackWARs=\"true\" autoDeploy=\"true\"<\/code><\/p>\n<p>Change this to:<\/p>\n<p><code>unpackWARs=\"false\" autoDeploy=\"true\"<\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We recommend installing Tomcat 9.0 to work with this release of ExtraView. The following steps will install Tomcat into the directory $BASE\/apache-tomcat-9.0.xx. Note that Tomcat is required, even if you are intending to use Microsoft IIS as your web server. IIS does not provide the same functionality as Tomcat. Installation cd\u00a0 $INSTALL cp apache-tomcat-9.0.xx.tar.gz $BASE&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":24376,"menu_order":3,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_lmt_disableupdate":"no","_lmt_disable":"","_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-24380","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Install &amp; Configure Tomcat - Product Documentation<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install &amp; Configure Tomcat - Product Documentation\" \/>\n<meta property=\"og:description\" content=\"We recommend installing Tomcat 9.0 to work with this release of ExtraView. The following steps will install Tomcat into the directory $BASE\/apache-tomcat-9.0.xx. Note that Tomcat is required, even if you are intending to use Microsoft IIS as your web server. IIS does not provide the same functionality as Tomcat. Installation cd\u00a0 $INSTALL cp apache-tomcat-9.0.xx.tar.gz $BASE...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/\" \/>\n<meta property=\"og:site_name\" content=\"Product Documentation\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-08T23:20:07+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/\",\"url\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/\",\"name\":\"Install & Configure Tomcat - Product Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\"},\"datePublished\":\"2024-02-15T22:53:34+00:00\",\"dateModified\":\"2025-04-08T23:20:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ExtraView 25\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Installation &#038; Upgrade Guide\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Software Installation &#038; Upgrades\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Linux Environment\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"Install &#038; Configure Tomcat\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"name\":\"ExtraView Product Documentation\",\"description\":\"ExtraView Documentation\",\"publisher\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\",\"name\":\"ExtraView Corporation\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"contentUrl\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"ExtraView Corporation\"},\"image\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install & Configure Tomcat - Product Documentation","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/","og_locale":"en_US","og_type":"article","og_title":"Install & Configure Tomcat - Product Documentation","og_description":"We recommend installing Tomcat 9.0 to work with this release of ExtraView. The following steps will install Tomcat into the directory $BASE\/apache-tomcat-9.0.xx. Note that Tomcat is required, even if you are intending to use Microsoft IIS as your web server. IIS does not provide the same functionality as Tomcat. Installation cd\u00a0 $INSTALL cp apache-tomcat-9.0.xx.tar.gz $BASE...","og_url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/","og_site_name":"Product Documentation","article_modified_time":"2025-04-08T23:20:07+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/","url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/","name":"Install & Configure Tomcat - Product Documentation","isPartOf":{"@id":"https:\/\/docs.extraview.com\/v25\/#website"},"datePublished":"2024-02-15T22:53:34+00:00","dateModified":"2025-04-08T23:20:07+00:00","breadcrumb":{"@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/install-configure-tomcat-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":2,"name":"ExtraView 25","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":3,"name":"Installation &#038; Upgrade Guide","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/"},{"@type":"ListItem","position":4,"name":"Software Installation &#038; Upgrades","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/"},{"@type":"ListItem","position":5,"name":"Linux Environment","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/"},{"@type":"ListItem","position":6,"name":"Install &#038; Configure Tomcat"}]},{"@type":"WebSite","@id":"https:\/\/docs.extraview.com\/v25\/#website","url":"https:\/\/docs.extraview.com\/v25\/","name":"ExtraView Product Documentation","description":"ExtraView Documentation","publisher":{"@id":"https:\/\/docs.extraview.com\/v25\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.extraview.com\/v25\/#organization","name":"ExtraView Corporation","url":"https:\/\/docs.extraview.com\/v25\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/","url":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","contentUrl":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","width":512,"height":512,"caption":"ExtraView Corporation"},"image":{"@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/"}}]}},"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"carl.koppel","author_link":"https:\/\/docs.extraview.com\/v25\/author\/carl-koppel\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24380","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/comments?post=24380"}],"version-history":[{"count":0,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24380\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24376"}],"wp:attachment":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/media?parent=24380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}