{"id":11634,"date":"2018-09-08T13:00:21","date_gmt":"2018-09-08T11:00:21","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/"},"modified":"2018-09-08T13:00:21","modified_gmt":"2018-09-08T11:00:21","slug":"documentum-silent-install-xplore-indexagent","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/","title":{"rendered":"Documentum &#8211; Silent Install &#8211; xPlore IndexAgent"},"content":{"rendered":"<p>In previous blogs, we installed in silent the <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\">Documentum binaries<\/a> (CS), a <a title=\"Documentum \u2013 Silent Install \u2013 Docbroker &amp; Licences\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbroker-licences\/\" target=\"_blank\" rel=\"noopener\">docbroker<\/a> (+licence(s) if needed), several repositories (<a title=\"Documentum \u2013 Silent Install \u2013 Docbases\/Repositories\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-docbasesrepositories\/\" target=\"_blank\" rel=\"noopener\">here<\/a> and <a title=\"Documentum \u2013 Silent Install \u2013 Remote Docbases\/Repositories (HA)\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-remote-docbasesrepositories-ha\/\" target=\"_blank\" rel=\"noopener\">here<\/a>), <a title=\"Documentum \u2013 Silent Install \u2013 D2\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-d2\/\" target=\"_blank\" rel=\"noopener\">D2<\/a> and finally the <a title=\"Documentum \u2013 Silent Install \u2013 xPlore binaries &amp; Dsearch\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-binaries-dsearch\/\" target=\"_blank\" rel=\"noopener\">xPlore binaries &amp; Dsearch<\/a>. This blog will be the last one of this series related to silent installation on Documentum and it will be about how to install an xPlore IndexAgent on the existing docbase\/repository created previously.<\/p>\n<p>So let&#8217;s start, as always, with the preparation of the properties file:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[xplore@full_text_server_01 ~]$ vi \/tmp\/xplore_install\/FT_IA_Installation.properties\n[xplore@full_text_server_01 ~]$ cat \/tmp\/xplore_install\/FT_IA_Installation.properties\n### Silent installation response file for Indexagent\nINSTALLER_UI=silent\nKEEP_TEMP_FILE=true\n\n### Installation parameters\ncommon.installLocation=\/opt\/xPlore\nCOMMON.DCTM_USER_DIR_WITH_FORWARD_SLASH=\/opt\/xPlore\ncommon.64bits=true\nCOMMON.JAVA64_HOME=\/opt\/xPlore\/java64\/JAVA_LINK\n\n### Configuration mode\nindexagent.configMode.create=1\nindexagent.configMode.upgrade=0\nindexagent.configMode.delete=0\nindexagent.configMode.create.migration=0\n\n### Other configurations\nindexagent.ess.host=full_text_server_01.dbi-services.com\nindexagent.ess.port=9300\n\nindexagent.name=Indexagent_Docbase1\nindexagent.FQDN=full_text_server_01.dbi-services.com\nindexagent.instance.port=9200\nindexagent.instance.password=ind3x4g3ntAdm1nP4ssw0rd\n\nindexagent.docbase.name=Docbase1\nindexagent.docbase.user=dmadmin\nindexagent.docbase.password=dm4dm1nP4ssw0rd\n\nindexagent.connectionBroker.host=content_server_01.dbi-services.com\nindexagent.connectionBroker.port=1489\n\nindexagent.globalRegistryRepository.name=gr_docbase\nindexagent.globalRegistryRepository.user=dm_bof_registry\nindexagent.globalRegistryRepository.password=dm_b0f_reg1s7ryP4ssw0rd\n\nindexagent.storage.name=default\nindexagent.local_content_area=\/opt\/xPlore\/wildfly9.0.1\/server\/DctmServer_Indexagent_Docbase1\/data\/Indexagent_Docbase1\/export\n\ncommon.installOwner.password=ind3x4g3ntAdm1nP4ssw0rd\n\n[xplore@full_text_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>common.installLocation: The path you installed xPlore on. I put here \/opt\/xPlore but you can use whatever you want<\/li>\n<li>COMMON.DCTM_USER_DIR_WITH_FORWARD_SLASH: Same value as &#8220;common.installLocation&#8221; for linux but for Windows, you need to change double back-slash with forward slash<\/li>\n<li>common.64bits: Whether or not the below mentioned java is a 32 or 64 bits<\/li>\n<li>COMMON.JAVA64_HOME: The path of the JAVA_HOME that has been installed with the binaries. If you installed xPlore under \/opt\/xPlore, then this value should be: \/opt\/xPlore\/java64\/JAVA_LINK<\/li>\n<li>indexagent.configMode.create: Whether or not you want to install an IndexAgent (binary value)<\/li>\n<li>indexagent.configMode.upgrade: Whether or not you want to upgrade an IndexAgent (binary value)<\/li>\n<li>indexagent.configMode.delete: Whether or not you want to delete an IndexAgent (binary value)<\/li>\n<li>indexagent.configMode.create.migration: This isn&#8217;t used anymore in recent installer versions but I still don&#8217;t know what was its usage before&#8230; In any cases, set this to 0 \ud83d\ude09<\/li>\n<li>indexagent.ess.host: The Fully Qualified Domain Name of the primary Dsearch this new IndexAgent will be linked to<\/li>\n<li>indexagent.ess.port: The port that the primary Dsearch is using<\/li>\n<li>indexagent.name: The name of the IndexAgent to be installed. The default name is usually Indexagent_&lt;docbase_name&gt;<\/li>\n<li>indexagent.FQDN: The Fully Qualified Domain Name of the current host the IndexAgent is being installed on<\/li>\n<li>indexagent.instance.port: The port that the IndexAgent is\/will be using (HTTP)<\/li>\n<li>indexagent.instance.password: The password to be used for the new IndexAgent JBoss admin<\/li>\n<li>indexagent.docbase.name: The name of the docbase\/repository that this IndexAgent is being installed for<\/li>\n<li>indexagent.docbase.user: The name of an account on the target docbase\/repository to be used to configure the objects (updating the dm_server_config, dm_ftindex_agent_config, aso&#8230;) and that has the needed permissions for that<\/li>\n<li>indexagent.docbase.password: The password of the above-mentioned account<\/li>\n<li>indexagent.connectionBroker.host: The Fully Qualified Domain Name of the target docbroker\/connection broker that is aware of the &#8220;indexagent.docbase.name&#8221; docbase\/repository. This will be used in the dfc.properties<\/li>\n<li>indexagent.connectionBroker.port: The port of the target docbroker\/connection broker that is aware of the &#8220;indexagent.docbase.name&#8221; docbase\/repository. This will be used in the dfc.properties<\/li>\n<li>indexagent.globalRegistryRepository.name: The name of the GR repository<\/li>\n<li>indexagent.globalRegistryRepository.user: The name of the BOF Registry account created on the CS inside the GR repository. This is usually something like &#8220;dm_bof_registry&#8221;<\/li>\n<li>indexagent.globalRegistryRepository.password: The password used by the BOF Registry account<\/li>\n<li>indexagent.storage.name: The name of the storage location to be created. The default one is &#8220;default&#8221;. If you intend to create new collections, you might want to give it a more meaningful name<\/li>\n<li>indexagent.local_content_area: The path to be used to store the content temporarily on the file system. The value I used above is the default one but you can put it wherever you want. If you are using a multi-node, this path needs to be accessible from all nodes of the multi-node so you can put it under the &#8220;ess.data_dir&#8221; folder for example<\/li>\n<li>common.installOwner.password: The password of the xPlore installation owner. I assume this is only used on Windows environments for the service setup because on linux, I always set a dummy password and there is no issue<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>Once the properties file is ready, make sure that the Dsearch this IndexAgent is linked to is currently running (http(s):\/\/&lt;indexagent.ess.host&gt;:&lt;indexagent.ess.port&gt;\/dsearchadmin), make sure that the Global Registry repository (gr_docbase) as well as the target repository (Docbase1) are running and then you can install the Documentum IndexAgent in silent using the following command:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[xplore@full_text_server_01 ~]$ \/opt\/xPlore\/setup\/indexagent\/iaConfig.bin LAX_VM \"\/opt\/xPlore\/java64\/JAVA_LINK\/bin\/java\" -f \/tmp\/xplore_install\/FT_IA_Installation.properties<\/pre>\n<p>&nbsp;<\/p>\n<p>This now concludes the series about Documentum silent installation. There are other components that support the silent installation like the Process Engine for example but usually they require only a few parameters (or even none) so that&#8217;s why I&#8217;m not including them here.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In previous blogs, we installed in silent the Documentum binaries (CS), a docbroker (+licence(s) if needed), several repositories (here and here), D2 and finally the xPlore binaries &amp; Dsearch. This blog will be the last one of this series related to silent installation on Documentum and it will be about how to install an xPlore [&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":[129,101,1417],"type_dbi":[],"class_list":["post-11634","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","category-enterprise-content-management","tag-documentum","tag-installation","tag-silent"],"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>Documentum - Silent Install - xPlore IndexAgent - 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-xplore-indexagent\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - Silent Install - xPlore IndexAgent\" \/>\n<meta property=\"og:description\" content=\"In previous blogs, we installed in silent the Documentum binaries (CS), a docbroker (+licence(s) if needed), several repositories (here and here), D2 and finally the xPlore binaries &amp; Dsearch. This blog will be the last one of this series related to silent installation on Documentum and it will be about how to install an xPlore [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-08T11:00:21+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=\"5 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-xplore-indexagent\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; Silent Install &#8211; xPlore IndexAgent\",\"datePublished\":\"2018-09-08T11:00:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/\"},\"wordCount\":823,\"commentCount\":0,\"keywords\":[\"Documentum\",\"Installation\",\"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-xplore-indexagent\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/\",\"name\":\"Documentum - Silent Install - xPlore IndexAgent - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2018-09-08T11:00:21+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/#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; xPlore IndexAgent\"}]},{\"@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 - xPlore IndexAgent - 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-xplore-indexagent\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - Silent Install - xPlore IndexAgent","og_description":"In previous blogs, we installed in silent the Documentum binaries (CS), a docbroker (+licence(s) if needed), several repositories (here and here), D2 and finally the xPlore binaries &amp; Dsearch. This blog will be the last one of this series related to silent installation on Documentum and it will be about how to install an xPlore [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/","og_site_name":"dbi Blog","article_published_time":"2018-09-08T11:00:21+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; Silent Install &#8211; xPlore IndexAgent","datePublished":"2018-09-08T11:00:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/"},"wordCount":823,"commentCount":0,"keywords":["Documentum","Installation","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-xplore-indexagent\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/","name":"Documentum - Silent Install - xPlore IndexAgent - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2018-09-08T11:00:21+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-silent-install-xplore-indexagent\/#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; xPlore IndexAgent"}]},{"@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\/11634","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=11634"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11634\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=11634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=11634"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=11634"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=11634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}