{"id":41425,"date":"2025-10-31T22:05:00","date_gmt":"2025-10-31T21:05:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=41425"},"modified":"2025-10-31T22:38:28","modified_gmt":"2025-10-31T21:38:28","slug":"dctm-configure-the-memory-of-an-ids-target-on-windows","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/","title":{"rendered":"Dctm &#8211; Configure the memory of an IDS Target on Windows"},"content":{"rendered":"\n<p>The Documentum Interactive Delivery Services (IDS) doesn&#8217;t seem to be very popular, at least in my experience, as I haven&#8217;t seen that one used in a lot of situations. However, when I did, I always had to increase the IDS Memory, as the default JVM was never enough to process an actual production load.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-memory-configuration-on-linux\">Memory configuration on Linux<\/h2>\n\n\n\n<p>On Linux, it is very easy to do for both the IDS Source and IDS Target, as what is running is simply the Java process. Therefore, you can simply update the shell scripts created by the installer or create your own. On the IDS Source, you can modify the line &#8220;<strong><em>USER_MEM_ARGS<\/em><\/strong>&#8221; inside the file &#8220;<strong><em>$CATALINA_HOME\/bin\/startWEBCACHE.sh<\/em><\/strong>&#8220;. On the IDS Target, you can create your own start script, which could contain something like:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n#!\/bin\/bash\n\n# IDS Agent Configuration\nagent_port=&quot;2787&quot;\njvm_mem=&quot;-Xms8g -Xmx8g -XX:MaxMetaspaceSize=512m -XX:+UseG1GC -XX:+UseStringDeduplication -XX:G1HeapRegionSize=2m&quot;\njvm_params=&quot;-Djava.net.preferIPv4Stack=true -Djava.security.egd=file:\/\/\/dev\/.\/urandom -Djava.awt.headless=true -Dfile.encoding=UTF-8&quot;\n\n# IDS Agent start command\n$JAVA_HOME\/bin\/java ${jvm_mem} ${jvm_params} -cp &quot;$IDS_HOME\/lib\/*&quot; \\\n                    com.documentum.webcache.transfer.MigAgent \\\n                    $IDS_HOME\/admin\/config\/${agent_port}\/agent.ini\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-preview-memory-configuration-on-windows\">Preview memory configuration on Windows<\/h2>\n\n\n\n<p>But what about Windows? In older IDS versions like 16.7.4 (compatible with Documentum 16.7.1 to 21.1), it was possible to increase the memory by following these steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the Registry Editor (regedit)<\/li>\n\n\n\n<li>Navigate to: <strong>HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\%IDS_SERVICE_NAME%\\Env<\/strong><\/li>\n\n\n\n<li>Double-click on the &#8220;<strong>Values<\/strong>&#8221; registry key<\/li>\n\n\n\n<li>Edit the &#8220;<strong>jvmoptions<\/strong>&#8221; definition with the required sizing, e.g.: <strong>jvmoptions=-Xms8g -Xmx8g -Dfile.encoding=UTF-8<\/strong><\/li>\n\n\n\n<li>Restart the Windows Service of the same name<\/li>\n<\/ul>\n\n\n\n<p><span style=\"text-decoration: underline\">Note:<\/span> <strong><em>%IDS_SERVICE_NAME%<\/em><\/strong> is the IDS Service name. It depends on IDS version, port and communication type (secure or not), but it can be something like &#8220;OpenTextDocumentumIDS_secure_2787&#8221;.<\/p>\n\n\n\n<p>That wasn&#8217;t documented initially but after some discussions with OpenText years ago (or was it Dell at the time? I don&#8217;t recall), it finally made its way into the documentation at some point, in the &#8220;User Guide&#8221;, under a section (beautifully) named &#8220;If the OutOfMemory error appears on the target&#8221;. In any cases, that was working properly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-it-is-supposed-to-work-for-ids-16-7-5\">How it is supposed to work for IDS 16.7.5&#8230;<\/h2>\n\n\n\n<p>The issue, and the reason for this blog is the IDS 16.7.5 (compatible with Documentum 23.4 to 24.4 (what happened to versions between 21.1 and 23.4? :D)). If you look at the documentation (c.f. IDS User Guide, section 5.13.2), it still mention to apply the exact same steps as what I described above for 16.7.4. But that doesn&#8217;t work for IDS 16.7.5, because there is no such &#8220;<strong><em>Env<\/em><\/strong>&#8221; folder in the Registry (it&#8217;s replaced by a &#8220;<strong><em>Parameters<\/em><\/strong>&#8221; one) and therefore no such key as &#8220;<strong><em>Values<\/em><\/strong>&#8221; either. The Service definition was changed for IDS 16.7.5 and unfortunately, that brought a bug with it.<\/p>\n\n\n\n<p>As a side note, with IDS 16.7.5, there are a couple of BAT scripts that will be created when you configure a Target Agent. A first one can be used to create the Windows Service (c.f. <strong><em>%IDS_HOME%\\admin\\config\\%PORT%\\InstallTargetServices.bat<\/em><\/strong>) while the second one is to remove it. The BAT script to create the Windows Service contains its full definition:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n@echo off\necho Target Service Installer.\n...\nset SERVICE_NAME=OpenTextDocumentumIDS_secure_2787\nset PR_DISPLAYNAME=!SERVICE_NAME!\nset PR_DESCRIPTION=OpenText Documentum Interactive Delivery Services Target Background Service\nset TARGET_HOME=D:\\ids\\target\nset AGENTINI_PATH=D:\\ids\\target\\admin\\config\\2787\\agent.ini\nset PR_INSTALL=!TARGET_HOME!\\product\\bin\\TargetService.exe\nset PR_SERVICEUSER=LocalSystem\n...\nREM Path to java installation\nset PR_JVM=!JAVA_HOME!\\bin\\server\\jvm.dll\nset PR_CLASSPATH=!TARGET_HOME!\\lib\\*\n...\nREM JVM configuration\nset PR_JVMMS=8192m\nset PR_JVMMX=8192m\nset PR_JVMSS=4000m\nset PR_JVMOPTIONS=-Dfile.encoding=UTF-8\nREM Install service\n...\n<\/pre><\/div>\n\n\n<p>Before opening the ticket with OpenText, I tried to modify the lines &#8220;<strong><em>PR_JVMMS<\/em><\/strong>&#8221; and &#8220;<strong><em>PR_JVMMX<\/em><\/strong>&#8221; to the needed values and then re-creating the service using the provided scripts. That&#8217;s how it is supposed to work, technically\/normally&#8230; But it looked like it had no impact at all. I also tried to set the JVM size by modifying the line &#8220;<strong><em>PR_JVMOPTIONS<\/em><\/strong>&#8221; from &#8220;<strong><em>-Dfile.encoding=UTF-8<\/em><\/strong>&#8221; to &#8220;<strong><em>-Xms8g -Xmx8g -Dfile.encoding=UTF-8<\/em><\/strong>&#8221; (so with a similar approach to what used to work in 16.7.4 and lower). That also failed and it was even worse as the IDS couldn&#8217;t start anymore, it was complaining about some file not found.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-workaround-until-the-patch-is-available\">Workaround until the patch is available<\/h2>\n\n\n\n<p>This is a bug in IDS 16.7.5, as OpenText confirmed after some discussions with them. A next patch should fix it. However, for now, it is possible to configure the IDS Target memory following these steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the Registry Editor (regedit.exe)<\/li>\n\n\n\n<li>Navigate to: <strong>HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Apache Software Foundation\\Procrun 2.0\\%IDS_SERVICE_NAME%\\Parameters\\Java<\/strong><\/li>\n\n\n\n<li>Double-click on the &#8220;<strong>JvmMs<\/strong>&#8221; registry key<\/li>\n\n\n\n<li>Make sure to set the &#8220;Base&#8221; to &#8220;<strong>Decimal<\/strong>&#8221; (right hand side) and edit the &#8220;<strong>Value data<\/strong>&#8221; with the required sizing, e.g.: <strong>8192<\/strong><\/li>\n\n\n\n<li>Repeat steps 3+4 for any other keys like &#8220;<strong>JvmMx<\/strong>&#8221; and &#8220;<strong>JvmSs<\/strong>&#8220;<\/li>\n\n\n\n<li>Restart the Windows Service of the same name<\/li>\n<\/ul>\n\n\n\n<p>If you are hit by the bug, which should be the case in IDS 16.7.5, then all 3 values will be 0 by default. To verify if the modification is successful after the service restart, you can open the Resource Monitor (resmon.exe) and look for the PID of the IDS (TargetService.exe) in the Memory tab (c.f. Commit, Working Set, Shareable, Private Memory).<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Documentum Interactive Delivery Services (IDS) doesn&#8217;t seem to be very popular, at least in my experience, as I haven&#8217;t seen that one used in a lot of situations. However, when I did, I always had to increase the IDS Memory, as the default JVM was never enough to process an actual production load. Memory [&hellip;]<\/p>\n","protected":false},"author":20,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[525],"tags":[2609,830,214,1217,73,549,2319,2320,3723],"type_dbi":[],"class_list":["post-41425","post","type-post","status-publish","format-standard","hentry","category-enterprise-content-management","tag-documentum-2","tag-ids","tag-java","tag-jvm","tag-linux","tag-windows","tag-xms","tag-xmx","tag-xss"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Dctm - Configure the memory of an IDS Target on Windows - dbi Blog<\/title>\n<meta name=\"description\" content=\"Ever wondered how to configure the IDS Memory on Linux or Windows? It&#039;s not always easy, especially when there are bugs in the product!\" \/>\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\/dctm-configure-the-memory-of-an-ids-target-on-windows\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dctm - Configure the memory of an IDS Target on Windows\" \/>\n<meta property=\"og:description\" content=\"Ever wondered how to configure the IDS Memory on Linux or Windows? It&#039;s not always easy, especially when there are bugs in the product!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-31T21:05:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-31T21:38:28+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=\"4 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\/dctm-configure-the-memory-of-an-ids-target-on-windows\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Dctm &#8211; Configure the memory of an IDS Target on Windows\",\"datePublished\":\"2025-10-31T21:05:00+00:00\",\"dateModified\":\"2025-10-31T21:38:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/\"},\"wordCount\":765,\"commentCount\":0,\"keywords\":[\"Documentum\",\"ids\",\"Java\",\"jvm\",\"Linux\",\"Windows\",\"Xms\",\"Xmx\",\"Xss\"],\"articleSection\":[\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/\",\"name\":\"Dctm - Configure the memory of an IDS Target on Windows - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2025-10-31T21:05:00+00:00\",\"dateModified\":\"2025-10-31T21:38:28+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"description\":\"Ever wondered how to configure the IDS Memory on Linux or Windows? It's not always easy, especially when there are bugs in the product!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dctm &#8211; Configure the memory of an IDS Target on Windows\"}]},{\"@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":"Dctm - Configure the memory of an IDS Target on Windows - dbi Blog","description":"Ever wondered how to configure the IDS Memory on Linux or Windows? It's not always easy, especially when there are bugs in the product!","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\/dctm-configure-the-memory-of-an-ids-target-on-windows\/","og_locale":"en_US","og_type":"article","og_title":"Dctm - Configure the memory of an IDS Target on Windows","og_description":"Ever wondered how to configure the IDS Memory on Linux or Windows? It's not always easy, especially when there are bugs in the product!","og_url":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/","og_site_name":"dbi Blog","article_published_time":"2025-10-31T21:05:00+00:00","article_modified_time":"2025-10-31T21:38:28+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Dctm &#8211; Configure the memory of an IDS Target on Windows","datePublished":"2025-10-31T21:05:00+00:00","dateModified":"2025-10-31T21:38:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/"},"wordCount":765,"commentCount":0,"keywords":["Documentum","ids","Java","jvm","Linux","Windows","Xms","Xmx","Xss"],"articleSection":["Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/","url":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/","name":"Dctm - Configure the memory of an IDS Target on Windows - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2025-10-31T21:05:00+00:00","dateModified":"2025-10-31T21:38:28+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"description":"Ever wondered how to configure the IDS Memory on Linux or Windows? It's not always easy, especially when there are bugs in the product!","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/dctm-configure-the-memory-of-an-ids-target-on-windows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Dctm &#8211; Configure the memory of an IDS Target on Windows"}]},{"@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\/41425","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=41425"}],"version-history":[{"count":12,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/41425\/revisions"}],"predecessor-version":[{"id":41458,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/41425\/revisions\/41458"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=41425"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=41425"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=41425"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=41425"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}