{"id":11514,"date":"2018-08-04T19:20:08","date_gmt":"2018-08-04T17:20:08","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/"},"modified":"2018-08-04T19:20:08","modified_gmt":"2018-08-04T17:20:08","slug":"documentum-silent-install-docbroker-licences","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/","title":{"rendered":"Documentum &#8211; Silent Install &#8211; Docbroker &amp; Licences"},"content":{"rendered":"<p>In a <a title=\"Documentum \u2013 Silent Install \u2013 Things to know, binaries &amp; JMS installation\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-things-to-know-binaries-jms-installation\/\" target=\"_blank\" rel=\"noopener\">previous blog<\/a>, I quickly went through the different things to know about the silent installations as well as how to install the CS binaries. Once the CS binaries are installed, you can install\/configure a few more components. On this second blog, I will continue with:<\/p>\n<ul>\n<li>Documentum docbroker\/connection broker installation<\/li>\n<li>Configuration of a Documentum licence<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h3>1. Documentum docbroker\/connection broker installation<\/h3>\n<p>As mentioned in the previous blog, the examples provided by Documentum contain almost all possible parameters but for this section, only a very few of them are required. The properties file for a docbroker\/connection broker installation is as follow:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ vi \/tmp\/dctm_install\/CS_Docbroker.properties\n[dmadmin@content_server_01 ~]$ cat \/tmp\/dctm_install\/CS_Docbroker.properties\n### Silent installation response file for a Docbroker\nINSTALLER_UI=silent\nKEEP_TEMP_FILE=true\n\n### Action to be executed\nSERVER.CONFIGURATOR.LICENSING=false\nSERVER.CONFIGURATOR.REPOSITORY=false\nSERVER.CONFIGURATOR.BROKER=true\n\n### Docbroker parameters\nSERVER.DOCBROKER_ACTION=CREATE\nSERVER.DOCBROKER_PORT=1489\nSERVER.DOCBROKER_NAME=Docbroker\nSERVER.PROJECTED_DOCBROKER_HOST=content_server_01.dbi-services.com\nSERVER.PROJECTED_DOCBROKER_PORT=1489\nSERVER.DOCBROKER_CONNECT_MODE=dual\n\n### Common parameters\nSTART_METHOD_SERVER=false\nMORE_DOCBASE=false\nSERVER.CONGINUE.MORECOMPONENT=false\n\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>A short description of these properties:<\/p>\n<ul>\n<li>INSTALLER_UI: The mode to use for the installation, here it is obviously silent<\/li>\n<li>KEEP_TEMP_FILE: Whether or not you want to keep the temporary files created by the installer. These files are generated under the \/tmp folder. I usually keep them because I want to be able to check them if something went wrong<\/li>\n<li>SERVER.CONFIGURATOR.LICENSING: Whether or not you want to configure a licence using this properties file. Here since we just want a docbroker\/connection broker, it is obviously false<\/li>\n<li>SERVER.CONFIGURATOR.REPOSITORY: Whether or not you want to configure a docbase\/repository. Same here, it will be false<\/li>\n<li>SERVER.CONFIGURATOR.BROKER: Whether or not you want to configure a docbroker\/connection broker. That&#8217;s the purpose of this properties file so it will be true<\/li>\n<li>SERVER.DOCBROKER_ACTION: The action to be executed, it can be either CREATE, UPGRADE or DELETE. You can upgrade a Documentum environment in silent even if the source doesn&#8217;t support the silent installation\/upgrade as long as the target version (CS 7.3, CS 16.4, &#8230;) does<\/li>\n<li>SERVER.DOCBROKER_PORT: The port the docbroker\/connection broker will listen to (always the native port)<\/li>\n<li>SERVER.DOCBROKER_NAME: The name of the docbroker\/connection broker to create\/upgrade\/delete<\/li>\n<li>SERVER.PROJECTED_DOCBROKER_HOST: The hostname to use for the dfc.properties projection for this docbroker\/connection broker<\/li>\n<li>SERVER.PROJECTED_DOCBROKER_PORT: The port to use for the dfc.properties projection related to this docbroker\/connection broker. It should obviously be the same as &#8220;SERVER.DOCBROKER_PORT&#8221;, don&#8217;t ask me why there are two different parameters for that&#8230;<\/li>\n<li>SERVER.DOCBROKER_CONNECT_MODE: The connection mode to use for the docbroker\/connection broker, it can be either native, dual or secure. If it is dual or secure, you have 2 choices:\n<ul>\n<li>Use the default &#8220;Anonymous&#8221; mode, which is actually not really secure<\/li>\n<li>Use a real &#8220;SSL Certificate&#8221; mode, which requires some more parameters to be configured (and you need to have the keystore and truststore already available):\n<ul>\n<li>SERVER.USE_CERTIFICATES: Whether or not to use SSL Certificate for the docbroker\/connection broker<\/li>\n<li>SERVER.DOCBROKER_KEYSTORE_FILE_NAME: The name of the p12 file that contains the keystore<\/li>\n<li>SERVER.DOCBROKER_KEYSTORE_PASSWORD_FILE_NAME: The name of the password file that contains the password of the keystore<\/li>\n<li>SERVER.DOCBROKER_CIPHER_LIST: Colon separated list of ciphers to be enabled (E.g.: EDH-RSA-AES256-GCM-SHA384:EDH-RSA-AES256-SHA)<\/li>\n<li>SERVER.DFC_SSL_TRUSTSTORE: Full path and name of the truststore to be used that contains the SSL Certificate needed to trust the targets<\/li>\n<li>SERVER.DFC_SSL_TRUSTSTORE_PASSWORD: The password of the truststore in clear text<\/li>\n<li>SERVER.DFC_SSL_USE_EXISTING_TRUSTSTORE: Whether or not to use the Java truststore or the 2 above parameters instead<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li>START_METHOD_SERVER: Whether or not you want the JMS to be re-started again once the docbroker\/connection broker has been created. Since we usually create the docbroker\/connection broker just before creating the docbases\/repositories and since the docbases\/repositories will anyway stop the JMS, we can leave it stopped there<\/li>\n<li>MORE_DOCBASE: Never change this value, it should remain as false as far as I know<\/li>\n<li>SERVER.CONGINUE.MORECOMPONENT: Whether or not you want to configure some additional components. Same as above, I would always let it as false&#8230; I know that the name of this parameter is strange but that&#8217;s the name that is coming from the templates&#8230; But if you look a little bit on the internet, you might be able to find &#8220;SERVER.CONTINUE.MORE.COMPONENT&#8221; as well&#8230; So which one is &#8220;correct&#8221;, which one isn&#8217;t is still a mystery for me. I&#8217;m using the first one but since I always set it to false, that doesn&#8217;t have any impact for me and I never saw any errors coming from the log files or anything.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>Once the properties file is ready, you can install the docbroker\/connection broker using the following command:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ $DM_HOME\/install\/dm_launch_server_config_program.sh -f \/tmp\/dctm_install\/CS_Docbroker.properties<\/pre>\n<p>&nbsp;<\/p>\n<p>That&#8217;s it, after a few seconds, the prompt will be returned and the docbroker\/connection broker will be installed with the provided parameters.<\/p>\n<p>&nbsp;<\/p>\n<h3>2. Configuration of a Documentum licence<\/h3>\n<p>Once you have a docbroker\/connection broker installed, you can configure\/enable a certain amount of licences (actually you could have done it before). For this example, I will only enable the TCS but you can do it for all others too. The properties file for a licence configuration is as follow:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ vi \/tmp\/dctm_install\/CS_Licence.properties\n[dmadmin@content_server_01 ~]$ cat \/tmp\/dctm_install\/CS_Licence.properties\n### Silent installation response file for a Licence\nINSTALLER_UI=silent\nKEEP_TEMP_FILE=true\n\n### Action to be executed\nSERVER.CONFIGURATOR.LICENSING=true\nSERVER.CONFIGURATOR.REPOSITORY=false\nSERVER.CONFIGURATOR.BROKER=false\n\n### Licensing parameters\nSERVER.TCS_LICENSE=DummyLicenceForTCS\n\n### Common parameters\nSTART_METHOD_SERVER=false\nMORE_DOCBASE=false\nSERVER.CONGINUE.MORECOMPONENT=false\n\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>A short description of these properties &#8211; compared to the above ones:<\/p>\n<ul>\n<li>SERVER.CONFIGURATOR.LICENSING &amp; SERVER.CONFIGURATOR.BROKER: This time, we will obviously set the broker to false and the licensing to true so we do not re-install another docbroker\/connection broker<\/li>\n<li>Licences:\n<ul>\n<li>SERVER.TCS_LICENSE: Licence string to enable the Trusted Content Services on this CS<\/li>\n<li>SERVER.XHIVE_LICENSE: Licence string to enable the XML Store Feature<\/li>\n<li>SERVER.AS_LICENSE: Licence string to enable the Archive Service<\/li>\n<li>SERVER.CSSL_LICENSE: Licence string to enable the Content Storage Service Licence<\/li>\n<li>aso&#8230; Some of these licences require more parameters to be added (XHIVE: &#8220;XHIVE.PAGE.SIZE&#8221;, &#8220;SERVER.ENABLE_XHIVE&#8221;, &#8220;SERVER.XHIVE_HOST&#8221;, aso&#8230;)<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>Once the properties file is ready, you can configure the licence(s) using the following command (same as previously, only the file changed):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ $DM_HOME\/install\/dm_launch_server_config_program.sh -f \/tmp\/dctm_install\/CS_Licence.properties<\/pre>\n<p>&nbsp;<\/p>\n<p>It might make sense to enable some licences during the installation of a specific docbase\/repository so then that would be up to you to think about this. In the above example, I only enabled the TCS so it is available to all docbases\/repositories that will be installed on this Content Server. Therefore, it makes sense to do separately, before the installation of the docbases\/repositories.<\/p>\n<p>You now know how to install and configure a docbroker\/connection broker as well as how to enable licences using the silent installation provided by Documentum<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In a previous blog, I quickly went through the different things to know about the silent installations as well as how to install the CS binaries. Once the CS binaries are installed, you can install\/configure a few more components. On this second blog, I will continue with: Documentum docbroker\/connection broker installation Configuration of a Documentum [&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,525],"tags":[1176,129,101,1418,1417],"type_dbi":[],"class_list":["post-11514","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","category-enterprise-content-management","tag-docbroker","tag-documentum","tag-installation","tag-licence","tag-silent"],"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>Documentum - Silent Install - Docbroker &amp; Licences - 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\/documentum-silent-install-docbroker-licences\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - Silent Install - Docbroker &amp; Licences\" \/>\n<meta property=\"og:description\" content=\"In a previous blog, I quickly went through the different things to know about the silent installations as well as how to install the CS binaries. Once the CS binaries are installed, you can install\/configure a few more components. On this second blog, I will continue with: Documentum docbroker\/connection broker installation Configuration of a Documentum [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-04T17:20:08+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=\"6 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\\\/documentum-silent-install-docbroker-licences\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-silent-install-docbroker-licences\\\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; Silent Install &#8211; Docbroker &amp; Licences\",\"datePublished\":\"2018-08-04T17:20:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-silent-install-docbroker-licences\\\/\"},\"wordCount\":1090,\"commentCount\":0,\"keywords\":[\"docbroker\",\"Documentum\",\"Installation\",\"Licence\",\"Silent\"],\"articleSection\":[\"Application integration &amp; Middleware\",\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-silent-install-docbroker-licences\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-silent-install-docbroker-licences\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-silent-install-docbroker-licences\\\/\",\"name\":\"Documentum - Silent Install - Docbroker &amp; Licences - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2018-08-04T17:20:08+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-silent-install-docbroker-licences\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-silent-install-docbroker-licences\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-silent-install-docbroker-licences\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Documentum &#8211; Silent Install &#8211; Docbroker &amp; Licences\"}]},{\"@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":"Documentum - Silent Install - Docbroker &amp; Licences - 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\/documentum-silent-install-docbroker-licences\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - Silent Install - Docbroker &amp; Licences","og_description":"In a previous blog, I quickly went through the different things to know about the silent installations as well as how to install the CS binaries. Once the CS binaries are installed, you can install\/configure a few more components. On this second blog, I will continue with: Documentum docbroker\/connection broker installation Configuration of a Documentum [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/","og_site_name":"dbi Blog","article_published_time":"2018-08-04T17:20:08+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; Silent Install &#8211; Docbroker &amp; Licences","datePublished":"2018-08-04T17:20:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/"},"wordCount":1090,"commentCount":0,"keywords":["docbroker","Documentum","Installation","Licence","Silent"],"articleSection":["Application integration &amp; Middleware","Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/","name":"Documentum - Silent Install - Docbroker &amp; Licences - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2018-08-04T17:20:08+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Documentum &#8211; Silent Install &#8211; Docbroker &amp; Licences"}]},{"@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\/11514","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=11514"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11514\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=11514"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=11514"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=11514"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=11514"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}