{"id":7362,"date":"2016-04-01T20:49:58","date_gmt":"2016-04-01T18:49:58","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/"},"modified":"2016-04-01T20:49:58","modified_gmt":"2016-04-01T18:49:58","slug":"alfresco-upgrade-your-version-of-apache-tomcat","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/","title":{"rendered":"Alfresco: upgrade your version of Apache Tomcat"},"content":{"rendered":"<p>Different versions of Alfresco can be installed with different versions of Tomcat. Alfresco provide a default version with its installer but when installing Alfresco manually, an administrator can choose to install Alfresco using a different version of Apache Tomcat. Usually, each version of Alfresco is officially supported for only one specific version of Apache Tomcat and that&#8217;s fine for some use cases but I think that most Alfresco administrators will not follow this specific recommendation, at least for the Community Edition.<\/p>\n<p>You can find the list of supported versions for the Alfresco Enterprise software on the <a href=\"https:\/\/www.alfresco.com\/services\/subscription\/supported-platforms\" target=\"_blank\" rel=\"noopener\">Alfresco Web Site<\/a> and we can also use this as a base for the Community Edition even if there is no official support for the CE. Now the question is then which version of the Apache Tomcat should be used for the Alfresco Community Edition? I would tend to say that it is probably best to always use the latest available patch of the Apache Tomcat version that is supported by Alfresco. Here is an example for an Alfresco Community Edition 4.2.x:<\/p>\n<ol>\n<li>Download the file &#8220;Supported Platforms for Alfresco Enterprise 4.2.x.pdf&#8221;<\/li>\n<li>Based on this file, Alfresco Enterprise 4.2.0 support Apache Tomcat 7.0.42<\/li>\n<li>Open the <a href=\"http:\/\/tomcat.apache.org\/\" target=\"_blank\" rel=\"noopener\">Apache Tomcat WebSite<\/a><\/li>\n<li>Select the Apache Tomcat 7.0 version (left panel) and download the latest stable minor release which is 7.0.68 today<\/li>\n<\/ol>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 5px;padding-top: 20px\">I would tend not to upgrade Apache Tomcat to the next major release (Tomcat 8 or 9) because it can imply an upgrade of the JRE and some other changes which can bring some issues with Alfresco, aso&#8230; Apache is trying to keep all minor releases fully backwards compatible which make this minor upgrade generally possible without much trouble.<br \/>\nIf you choose the latest available minor version during the installation that&#8217;s good but after some time, you might want\/need to upgrade this version for several reasons:<\/p>\n<ul>\n<li>Bug fix<\/li>\n<li>Security fix<\/li>\n<li>Preventive actions<\/li>\n<li>aso&#8230;<\/li>\n<\/ul>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 5px;padding-top: 0px\">Therefore in this blog, I will show you the minimum commands to properly upgrade Apache Tomcat. These commands might change a little bit depending on your actual Operating System and versions of Alfresco and\/or Tomcat but you should catch the idea. Therefore I will base my commands on one of my test environment with the following characteristics:<\/p>\n<ul>\n<li>RedHat Enterprise Linux 6.1<\/li>\n<li>Alfresco Community Enterprise 4.2.c installed in \/opt\/alfresco-4.2.c\/<\/li>\n<li>Upgrade Apache Tomcat from 7.0.30 to 7.0.68<\/li>\n<\/ul>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 0px\">So first of all, let&#8217;s download the software:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf02:$ cd \/opt\/alfresco-4.2.c\/\nalfresco@vmdevalf02:$ wget http:\/\/mirror.switch.ch\/mirror\/apache\/dist\/tomcat\/tomcat-7\/v7.0.68\/bin\/apache-tomcat-7.0.68.tar.gz\nalfresco@vmdevalf02:$ mv apache-tomcat-7.0.68\/ tomcat-7.0.68<\/pre>\n<p><\/p>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">Once done, the idea is simply to transfer all specific customization from your old Tomcat version to the new one. This include the specific JVM parameters setup in the setenv.sh and usually, there is nothing more to do for the tomcat\/bin folder. Another point to not miss is the definition of the shared.loader in the catalina.properties:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf01:$ cp tomcat\/bin\/setenv.sh tomcat-7.0.68\/bin\/setenv.sh\nalfresco@vmdevalf01:$ sed -i 's\/shared.loader=\/shared.loader=${catalina.base}\/shared\/classes,${catalina.base}\/shared\/lib\/*.jar\/' tomcat-7.0.68\/conf\/catalina.properties<\/pre>\n<p><\/p>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">After that comes the &#8216;big part&#8217; which is clearly not that big! The next step in our upgrade is to modify the server.xml of the new tomcat version to include all necessary customization. Here are the commands that I executed to enable the SSL, increase the\u00a0maxHttpHeaderSize for Kerberos and also apply some security best practices like hiding the versions of your Web Application Server:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf01:$ sed -i 's\/Connector port=\"8080\"\/Connector port=\"8080\" URIEncoding=\"UTF-8\"\/' tomcat-7.0.68\/conf\/server.xml\nalfresco@vmdevalf01:$ sed -i 's\/    redirectPort=\"8443\"\/    redirectPort=\"8443\" maxHttpHeaderSize=\"32768\" server=\"Apache Tomcat\" xpoweredby=\"false\"\/' tomcat-7.0.68\/conf\/server.xml\nalfresco@vmdevalf01:$ sed -i 's\/maxSavePostSize=\"-1\"\/maxSavePostSize=\"-1\" server=\"Apache Tomcat\" xpoweredby=\"false\"\/' tomcat-7.0.68\/conf\/server.xml\n\nalfresco@vmdevalf01:$ sed -i '\/Connector port=\"8009\"\/a \n        &lt;Connector port=\"8443\" protocol=\"org.apache.coyote.http11.Http11Protocol\" SSLEnabled=\"true\" \n            maxThreads=\"150\" scheme=\"https\" keystoreFile=\"\/opt\/alfresco-4.2.c\/alf_data\/keystore\/ssl.keystore\" keystorePass=\"keypassword\" keystoreType=\"JCEKS\" \n            secure=\"true\" connectionTimeout=\"240000\" truststoreFile=\"\/opt\/alfresco-4.2.c\/alf_data\/keystore\/ssl.truststore\" truststorePass=\"trustpassword\" truststoreType=\"JCEKS\" \n            clientAuth=\"false\" sslProtocol=\"TLS\" allowUnsafeLegacyRenegotiation=\"true\" maxSavePostSize=\"-1\" \/&gt;' tomcat-7.0.68\/conf\/server.xml<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">Of course, you can also open the file directly and put the lines inside it&#8230; Just remove the different non-needed &#8221; accross the lines. If you aren&#8217;t using the access logs (for DEV\/TEST environments for example), I would also recommend you to comment the Valve logging (org.apache.catalina.valves.AccessLogValve). Once done, you can check the differences between the two versions of tomcat using something like:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf01:$ diff tomcat-7.0.68\/conf\/server.xml tomcat\/conf\/server.xml<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">Next step the tomcat users. Alfresco usually define two default users that you might have and use. These users are put in the file tomcat-user.xml:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf01:$ cat tomcat\/conf\/tomcat-users.xml | grep -i Alfresco\n  &lt;user username=\"CN=Alfresco Repository Client, OU=Unknown, O=Alfresco Software Ltd., L=Maidenhead, ST=UK, C=GB\" roles=\"repoclient\" password=\"null\"\/&gt;\n  &lt;user username=\"CN=Alfresco Repository, OU=Unknown, O=Alfresco Software Ltd., L=Maidenhead, ST=UK, C=GB\" roles=\"repository\" password=\"null\"\/&gt;<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">You can simply add these two lines in the new Tomcat version (again, don&#8217;t forget the &#8221;):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf01:$ sed -i '\/&lt;tomcat-users&gt;\/a \n  &lt;user username=\"CN=Alfresco Repository Client, OU=Unknown, O=Alfresco Software Ltd., L=Maidenhead, ST=UK, C=GB\" roles=\"repoclient\" password=\"null\"\/&gt; \n  &lt;user username=\"CN=Alfresco Repository, OU=Unknown, O=Alfresco Software Ltd., L=Maidenhead, ST=UK, C=GB\" roles=\"repository\" password=\"null\"\/&gt;' tomcat-7.0.68\/conf\/tomcat-users.xml<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">This conclude the configuration part. Now you just have to copy the data from the old version to the new one:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf01:$ cp -R tomcat\/endorsed\/ tomcat-7.0.68\/\nalfresco@vmdevalf01:$ cp tomcat\/lib\/postgresql-9.0-802.jdbc4.jar tomcat-7.0.68\/lib\/\nalfresco@vmdevalf01:$ cp -R tomcat\/scripts\/ tomcat-7.0.68\/\nalfresco@vmdevalf01:$ cp -R tomcat\/shared\/ tomcat-7.0.68\/\nalfresco@vmdevalf01:$ rm -rf tomcat-7.0.68\/webapps\/docs tomcat-7.0.68\/webapps\/examples\/ tomcat-7.0.68\/webapps\/host-manager tomcat-7.0.68\/webapps\/manager\nalfresco@vmdevalf01:$ cp tomcat\/webapps\/alfresco.war tomcat-7.0.68\/webapps\/\nalfresco@vmdevalf01:$ cp tomcat\/webapps\/share.war tomcat-7.0.68\/webapps\/<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">Now depending on your Indexing system (Lucene?Solr 1? Solr4?), this next step will change&#8230; If you are using Solr4, you probably also have a solr.war file on the webapps folder and therefore you can just put that in the new version too. If you are using Solr1, you might not have a war file in the webapps folder because at the beginning, Solr was deployed in the alf_data folder and therefore there is another way to indicate to Tomcat that the Solr is deployed here:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">echo \"Solr war file in webapps folder:\"\nalfresco@vmdevalf01:$ cp tomcat\/webapps\/solr.war tomcat-7.0.68\/webapps\/\n\necho \"Solr war file in alf_data:\"\nalfresco@vmdevalf01:$ cp -R tomcat\/conf\/Catalina\/ tomcat-7.0.68\/conf\/\n\necho \"Other solution... (depends on how you installed\/configured Lucene\/Solr for Alfresco)\"<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">Of course, you will also need to update any other customization that you may have done like:<\/p>\n<ul>\n<li>Updating the logging configuration of Tomcat (conf\/logging.properties)<\/li>\n<li>Change the default configured ports (conf\/server.xml)<\/li>\n<li>Change the default error pages (404, 500)<\/li>\n<li>aso&#8230;<\/li>\n<\/ul>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 0px\">That&#8217;s why I would strongly suggest you &#8211; before to actually switch from one version to another &#8211; to manually compare all configuration files in the &#8220;conf&#8221; folders. This can be done using a tool such as notepad++ on Windows or simply a &#8220;diff &lt;path_to_file1&gt; &lt;path_to_file2&gt;&#8221; on Linux based systems.<\/p>\n<p>When you are sure that everything has been copied from your old version of Tomcat to the new one, you can actually do the change:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf01:$ service alfresco stop\nalfresco@vmdevalf01:$ mv tomcat\/ tomcat-7.0.30\/\nalfresco@vmdevalf01:$ mv tomcat-7.0.68\/ tomcat\/\nalfresco@vmdevalf01:$ service alfresco start\nalfresco@vmdevalf01:$ mv tomcat-7.0.30\/ \/home\/alfresco\/backup_tomcat-7.0.30<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">And voila, you just have to check the logs of Alfresco and Tomcat, verify that the war files have been deployed successfully and that Alfresco is Up&amp;Running again. To be sure that everything is working properly, you should really check the basic features of Alfresco like CheckIn\/CheckOut, Online Preview, Creation of new document, Search, Workflow, aso&#8230;<\/p>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">In addition to this upgrade, I would also suggest you &#8211; if not already done &#8211; to change the default error pages (404, 500) as said above. This can be done pretty easily. Indeed you can simply add the following inside tomcat\/webapps\/ROOT\/WEB-INF\/web.xml:<\/p>\n<pre class=\"brush: xml; gutter: true; first-line: 1\">  &lt;error-page&gt;\n    &lt;error-code&gt;404&lt;\/error-code&gt;\n    &lt;location&gt;\/errors\/404.html&lt;\/location&gt;\n  &lt;\/error-page&gt;\n  &lt;error-page&gt;\n    &lt;error-code&gt;500&lt;\/error-code&gt;\n    &lt;location&gt;\/errors\/500.html&lt;\/location&gt;\n  &lt;\/error-page&gt;<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">Once done, create the error folder:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">alfresco@vmdevalf01:$ mkdir tomcat\/webapps\/ROOT\/errors<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">And put the errors pages inside it. This is an example for the file 404.html:<\/p>\n<pre class=\"brush: html; gutter: true; first-line: 1\">&lt;!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD XHTML 1.0 Strict\/\/EN\" \"http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-strict.dtd\"&gt;\n&lt;html &gt;\n\n&lt;head&gt;\n   &lt;meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\"&gt;\n   &lt;style type=\"text\/css\"&gt;\n   body {\n      font: 13px\/1.231 arial,helvetica,clean,sans-serif;\n      color: #000000;\n   }\n\n   body,div,p {\n      margin: 0;\n      padding: 0;\n   }\n\n   div {\n      text-align: center;\n   }\n\n   div.panel {\n      display: inline-block;\n   }\n   &lt;\/style&gt;\n   &lt;title&gt;Alfresco Share \u00bb Page Not Found&lt;\/title&gt;\n&lt;\/head&gt;\n\n&lt;body&gt;\n   &lt;div&gt;\n      &lt;br&gt;&lt;img src=\"\/share\/themes\/default\/images\/app-logo.png\"&gt;&lt;br&gt;&lt;br&gt;\n      &lt;p style=\"font-size:150%\"&gt;Page Not Found.&lt;\/p&gt;\n      &lt;br&gt;&lt;p&gt;The page you were trying to access hasn't been found on the server. Please try again later or contact your administrator.&lt;\/p&gt;&lt;br&gt;\n      &lt;a href=\"\/share\"&gt;Return to Alfresco&lt;\/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;\n      &lt;a href=\"http:\/\/www.alfresco.com\"&gt;Alfresco Software&lt;\/a&gt; Inc. \u00a9 2005-2012 All rights reserved.\n   &lt;\/div&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\" style=\"padding-bottom: 0px;padding-top: 20px\">This conclude this blog about the upgrade of the Apache Tomcat used by Alfresco. As you saw, that&#8217;s not complicated at all, it will just take some time to be done properly because we don&#8217;t want to left something behind!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Different versions of Alfresco can be installed with different versions of Tomcat. Alfresco provide a default version with its installer but when installing Alfresco manually, an administrator can choose to install Alfresco using a different version of Apache Tomcat. Usually, each version of Alfresco is officially supported for only one specific version of Apache Tomcat [&hellip;]<\/p>\n","protected":false},"author":20,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[3169,771,219],"type_dbi":[],"class_list":["post-7362","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","tag-alfresco","tag-tomcat","tag-upgrade"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Alfresco: upgrade your version of Apache Tomcat - dbi Blog<\/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:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Alfresco: upgrade your version of Apache Tomcat\" \/>\n<meta property=\"og:description\" content=\"Different versions of Alfresco can be installed with different versions of Tomcat. Alfresco provide a default version with its installer but when installing Alfresco manually, an administrator can choose to install Alfresco using a different version of Apache Tomcat. Usually, each version of Alfresco is officially supported for only one specific version of Apache Tomcat [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-04-01T18:49:58+00:00\" \/>\n<meta name=\"author\" content=\"Morgan Patou\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@MorganPatou\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Morgan Patou\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Alfresco: upgrade your version of Apache Tomcat\",\"datePublished\":\"2016-04-01T18:49:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/\"},\"wordCount\":1040,\"commentCount\":0,\"keywords\":[\"Alfresco\",\"Tomcat\",\"Upgrade\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/\",\"name\":\"Alfresco: upgrade your version of Apache Tomcat - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2016-04-01T18:49:58+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/alfresco-upgrade-your-version-of-apache-tomcat\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Alfresco: upgrade your version of Apache Tomcat\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\",\"name\":\"Morgan Patou\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"caption\":\"Morgan Patou\"},\"description\":\"Morgan Patou has over 12 years of experience in Enterprise Content Management (ECM) systems, with a strong focus in recent years on platforms such as Alfresco, Documentum, and M-Files. He specializes in the architecture, setup, customization, and maintenance of ECM infrastructures in complex &amp; critical environments. Morgan is well-versed in both engineering and operations aspects, including high availability design, system integration, and lifecycle management. He also has a solid foundation in open-source and proprietary technologies - ranging from Apache, OpenLDAP or Kerberos to enterprise-grade systems like WebLogic. Morgan Patou holds an Engineering Degree in Computer Science from ENSISA (\u00c9cole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse, France. He is Alfresco Content Services Certified Administrator (ACSCA), Alfresco Content Services Certified Engineer (ACSCE) as well as OpenText Documentum Certified Administrator. His industry experience spans the Public Sector, IT Services, Financial Services\\\/Banking, and the Pharmaceutical industry.\",\"sameAs\":[\"https:\\\/\\\/blog.dbi-services.com\\\/author\\\/morgan-patou\\\/\",\"https:\\\/\\\/x.com\\\/MorganPatou\"],\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/morgan-patou\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Alfresco: upgrade your version of Apache Tomcat - dbi Blog","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:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/","og_locale":"en_US","og_type":"article","og_title":"Alfresco: upgrade your version of Apache Tomcat","og_description":"Different versions of Alfresco can be installed with different versions of Tomcat. Alfresco provide a default version with its installer but when installing Alfresco manually, an administrator can choose to install Alfresco using a different version of Apache Tomcat. Usually, each version of Alfresco is officially supported for only one specific version of Apache Tomcat [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/","og_site_name":"dbi Blog","article_published_time":"2016-04-01T18:49:58+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Alfresco: upgrade your version of Apache Tomcat","datePublished":"2016-04-01T18:49:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/"},"wordCount":1040,"commentCount":0,"keywords":["Alfresco","Tomcat","Upgrade"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/","url":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/","name":"Alfresco: upgrade your version of Apache Tomcat - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2016-04-01T18:49:58+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/alfresco-upgrade-your-version-of-apache-tomcat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Alfresco: upgrade your version of Apache Tomcat"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8","name":"Morgan Patou","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","caption":"Morgan Patou"},"description":"Morgan Patou has over 12 years of experience in Enterprise Content Management (ECM) systems, with a strong focus in recent years on platforms such as Alfresco, Documentum, and M-Files. He specializes in the architecture, setup, customization, and maintenance of ECM infrastructures in complex &amp; critical environments. Morgan is well-versed in both engineering and operations aspects, including high availability design, system integration, and lifecycle management. He also has a solid foundation in open-source and proprietary technologies - ranging from Apache, OpenLDAP or Kerberos to enterprise-grade systems like WebLogic. Morgan Patou holds an Engineering Degree in Computer Science from ENSISA (\u00c9cole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse, France. He is Alfresco Content Services Certified Administrator (ACSCA), Alfresco Content Services Certified Engineer (ACSCE) as well as OpenText Documentum Certified Administrator. His industry experience spans the Public Sector, IT Services, Financial Services\/Banking, and the Pharmaceutical industry.","sameAs":["https:\/\/blog.dbi-services.com\/author\/morgan-patou\/","https:\/\/x.com\/MorganPatou"],"url":"https:\/\/www.dbi-services.com\/blog\/author\/morgan-patou\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/7362","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=7362"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/7362\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=7362"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=7362"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=7362"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=7362"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}