{"id":10370,"date":"2017-07-22T05:36:00","date_gmt":"2017-07-22T03:36:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/"},"modified":"2017-07-22T05:36:00","modified_gmt":"2017-07-22T03:36:00","slug":"documentum-change-password-3-cs-installation-owner","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/","title":{"rendered":"Documentum &#8211; Change password &#8211; 3 &#8211; CS &#8211; Installation Owner"},"content":{"rendered":"<p>In this blog, I will describe the few steps needed to change the Documentum Installation Owner&#8217;s password. As you all know, the Installation Owner is (one of) the most important password in Documentum and it is probably the first you define even before starting the installation.<\/p>\n<p>&nbsp;<\/p>\n<p>As always, I will use a linux environment and in this case, I&#8217;m assuming the &#8220;dmadmin&#8221; account is a local account to each Content Server and therefore the change of the password must be done on all of them. In case you have an AD integration or something similar, you can just change the password at the AD level so that&#8217;s not funny, right?!<\/p>\n<p>&nbsp;<\/p>\n<p>So, let&#8217;s start with log in to all Content Servers using the Installation Owner&#8217;s account. In case you don&#8217;t remember the old password, you will have to use the root account instead. So changing the dmadmin&#8217;s password is pretty simple, you just have to change it on the OS level (again this is the default&#8230; If you changed the dmadmin&#8217;s account type, then&#8230;):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [7]\">[dmadmin@content_server_01 ~]$ passwd\n    Changing password for user dmadmin.\n    Changing password for dmadmin.\n    (current) UNIX password:\n    New password:\n    Retype new password:\n    passwd: all authentication tokens updated successfully.\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>To verify that the dmadmin&#8217;s password has been changed successfully, you can use the dm_check_password utility as follow (leave the extra #1 and #2 empty):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [6]\">[dmadmin@content_server_01 ~]$ $DOCUMENTUM\/dba\/dm_check_password\n    Enter user name: dmadmin\n    Enter user password:\n    Enter user extra #1 (not used):\n    Enter user extra #2 (not used):\n    $DOCUMENTUM\/dba\/dm_check_password: Result = (0) = (DM_EXT_APP_SUCCESS)\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>Once you are sure that the password is set properly, one could think that it&#8217;s over but actually, it&#8217;s not&#8230; There is one additional place where this password must be set and I&#8217;m not talking about new installations which obviously will requires you to enter the new password. For that, let&#8217;s first encrypt this password:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [5]\">[dmadmin@content_server_01 ~]$ read -s -p \"Please enter the NEW dmadmin's password: \" dmadmin_pw; echo\n    --&gt; Enter the NEW dmadmin's password: \n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ $JAVA_HOME\/bin\/java -cp $DOCUMENTUM_SHARED\/dfc\/dfc.jar com.documentum.fc.tools.RegistryPasswordUtils ${dmadmin_pw}\nAAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>I generated a random string for this example (&#8220;AAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0&#8221;) but this will be the encrypted password of dmadmin. I will use this value in the commands below so whenever you see this, just replace it with what your &#8220;java -cp ..&#8221; command returned.<\/p>\n<p>&nbsp;<\/p>\n<p>Then where should this be used? On the Full Text Server! So log in to your FT and inside the watchdog configuration, the dmadmin&#8217;s password is used for the IndexAgent connection. The commands below will take a backup of the configuration file and then update it to use the new encrypted password:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[xplore@full_text_server_01 ~]$ cd $XPLORE_HOME\/watchdog\/config\/\n[xplore@full_text_server_01 config]$ cp dsearch-watchdog-config.xml dsearch-watchdog-config.xml_bck_$(date \"+%Y%m%d\")\n[xplore@full_text_server_01 config]$\n[xplore@full_text_server_01 config]$ sed -i 's,&lt;property name=\"docbase_password\" value=\"[^\"]*\",&lt;property name=\"docbase_password\" value=\"AAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0\",' dsearch-watchdog-config.xml\n[xplore@full_text_server_01 config]$<\/pre>\n<p>&nbsp;<\/p>\n<p>Small (but important) note on the above commands: if you are using the same FT for different environments or if one of the IndexAgent is linked to a different dmadmin&#8217;s account (and therefore different password), then you will need to open the file manually and replace the passwords for the corresponding xml tags (or use a different sed command which will be more complicated). Each IndexAgent will have the following lines for its configuration:<\/p>\n<pre class=\"brush: xml; gutter: true; first-line: 1; highlight: [6]\">&lt;application-config instance-name=\"&lt;hostname&gt;_9200_IndexAgent\" name=\"IndexAgent\"&gt;\n        &lt;properties&gt;\n                &lt;property name=\"application_url\" value=\"https:\/\/&lt;hostname&gt;:9202\/IndexAgent\"\/&gt;\n                &lt;property name=\"docbase_user\" value=\"dmadmin\"\/&gt;\n                &lt;property name=\"docbase_name\" value=\"DocBase1\"\/&gt;\n                &lt;property name=\"docbase_password\" value=\"AAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0\"\/&gt;\n                &lt;property name=\"servlet_wait_time\" value=\"3000\"\/&gt;\n                &lt;property name=\"servlet_max_retry\" value=\"5\"\/&gt;\n                &lt;property name=\"action_on_servlet_if_stopped\" value=\"notify\"\/&gt;\n        &lt;\/properties&gt;\n        &lt;tasks&gt;\n                ...\n        &lt;\/tasks&gt;\n&lt;\/application-config&gt;<\/pre>\n<p>&nbsp;<\/p>\n<p>Once the above modification has been done, simply restart the xPlore components.<\/p>\n<p>&nbsp;<\/p>\n<p>Another thing that must be done is linked to D2 and D2-Config&#8230; If you are using these components, then you will need to update the D2 Lockbox on the Content Server side and you probably defined the LoadOnStartup property which will require you to put the dmadmin&#8217;s password in the D2 Lockbox on the Web Application side too. In this blog, I won&#8217;t discuss the full recreation of the D2 Lockbox with new password\/passphrases since this is pretty simple and most likely known by everybody so I&#8217;m just going to update the dmadmin&#8217;s password inside the D2 Lockbox instead for the different properties. If you would like a more complete blog for the lockbox, just let me know! This only apply to &#8220;not so old nor so recent&#8221; D2 versions since the D2 Lockbox has been introduced only a few years ago but is yet not present anymore with D2 4.7, so&#8230;<\/p>\n<p>&nbsp;<\/p>\n<p>On the Content Server &#8211; I&#8217;m just setting up the environment to contain the libraries needed to update the D2 Lockbox and then updating the D2-JMS properties inside the lockbox. I&#8217;m using $DOCUMENTUM\/d2-lib as the root folder under which the D2 Installer put the libraries and initial lockbox:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ export LD_LIBRARY_PATH=$DOCUMENTUM\/d2-lib\/lockbox\/lib\/native\/linux_gcc34_x64:$LD_LIBRARY_PATH\n[dmadmin@content_server_01 ~]$ export PATH=$DOCUMENTUM\/d2-lib\/lockbox\/lib\/native\/linux_gcc34_x64:$PATH\n[dmadmin@content_server_01 ~]$ export CLASSPATH=$DOCUMENTUM\/d2-lib\/D2.jar:$DOCUMENTUM\/d2-lib\/LB.jar:$DOCUMENTUM\/d2-lib\/LBJNI.jar:$CLASSPATH\n[dmadmin@content_server_01 ~]$ cp -R $DOCUMENTUM\/d2-lib\/lockbox $DOCUMENTUM\/d2-lib\/lockbox-bck_$(date \"+%Y%m%d-%H%M%S\")\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ for docbase in `cd $DOCUMENTUM\/dba\/config\/; ls`; do java com.emc.common.java.crypto.SetLockboxProperty $DOCUMENTUM\/d2-lib\/lockbox D2-JMS.${docbase}.password ${dmadmin_pw}; done\n[dmadmin@content_server_01 ~]$ for docbase in `cd $DOCUMENTUM\/dba\/config\/; ls`; do java com.emc.common.java.crypto.SetLockboxProperty $DOCUMENTUM\/d2-lib\/lockbox D2-JMS.${docbase}.${docbase}.password ${dmadmin_pw}; done<\/pre>\n<p>&nbsp;<\/p>\n<p>The last command above mention &#8220;${docbase}.${docbase}&#8221;&#8230; Actually the first one is indeed the name of the docbase but the second one is the name of the local dm_server_config. Therefore, for a single Content Server the above commands are probably enough (since by default dm_server_config name = docbase name) but if you have a HA setup, then you will need to also include the remote dm_server_config names for each docbase (alternatively you can also use wildcards&#8230;). Once that is done, just replace the old lockbox with the new one in the JMS.<\/p>\n<p>&nbsp;<\/p>\n<p>On the Web Application Server &#8211; the same environment variables are needed but of course the paths will change and you might need to include the C6-Common jar file too (which is known to cause issues with WebLogic if it is still in the CLASSPATH when you start it). So on the Web Application Server, I&#8217;m also setting up the environment variables with the dmadmin&#8217;s password and D2 Lockbox passphrase as well as another variable for the list of docbases to loop on them:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[weblogic@weblogic_server_01 ~]$ for docbase in $DOCBASES; do java com.emc.common.java.crypto.SetLockboxProperty $WLS_DOMAIN\/D2\/lockbox LoadOnStartup.${docbase}.password ${dmadmin_pw} ${d2method_pp}; done\n[weblogic@weblogic_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>With the D2 Lockbox, you will need to restart the components using them when you recreate it from scratch. However, when you update a property inside it, like above, it&#8217;s usually not needed. The next time the password is needed, it will be picked from the Lockbox.<\/p>\n<p>&nbsp;<\/p>\n<p>Last comment on this, if you are using an ADTS and if you used the dmadmin&#8217;s account to manage it (I wouldn&#8217;t recommend this! Please use a dedicated user for this instead), then the password is also encrypted in a password file for each docbases under &#8220;%ADTS_HOME%\/CTS\/docbases\/&#8221;.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, I will describe the few steps needed to change the Documentum Installation Owner&#8217;s password. As you all know, the Installation Owner is (one of) the most important password in Documentum and it is probably the first you define even before starting the installation. &nbsp; As always, I will use a linux environment [&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":[525],"tags":[1135,477,1137,129],"type_dbi":[],"class_list":["post-10370","post","type-post","status-publish","format-standard","hentry","category-enterprise-content-management","tag-change-password","tag-d2-lockbox","tag-dmadmin","tag-documentum"],"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 - Change password - 3 - CS - Installation Owner - 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-change-password-3-cs-installation-owner\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - Change password - 3 - CS - Installation Owner\" \/>\n<meta property=\"og:description\" content=\"In this blog, I will describe the few steps needed to change the Documentum Installation Owner&#8217;s password. As you all know, the Installation Owner is (one of) the most important password in Documentum and it is probably the first you define even before starting the installation. &nbsp; As always, I will use a linux environment [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-22T03:36:00+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=\"7 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-change-password-3-cs-installation-owner\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; Change password &#8211; 3 &#8211; CS &#8211; Installation Owner\",\"datePublished\":\"2017-07-22T03:36:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/\"},\"wordCount\":973,\"commentCount\":0,\"keywords\":[\"Change Password\",\"D2 lockbox\",\"dmadmin\",\"Documentum\"],\"articleSection\":[\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/\",\"name\":\"Documentum - Change password - 3 - CS - Installation Owner - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2017-07-22T03:36:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Documentum &#8211; Change password &#8211; 3 &#8211; CS &#8211; Installation Owner\"}]},{\"@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 - Change password - 3 - CS - Installation Owner - 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-change-password-3-cs-installation-owner\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - Change password - 3 - CS - Installation Owner","og_description":"In this blog, I will describe the few steps needed to change the Documentum Installation Owner&#8217;s password. As you all know, the Installation Owner is (one of) the most important password in Documentum and it is probably the first you define even before starting the installation. &nbsp; As always, I will use a linux environment [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/","og_site_name":"dbi Blog","article_published_time":"2017-07-22T03:36:00+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; Change password &#8211; 3 &#8211; CS &#8211; Installation Owner","datePublished":"2017-07-22T03:36:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/"},"wordCount":973,"commentCount":0,"keywords":["Change Password","D2 lockbox","dmadmin","Documentum"],"articleSection":["Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/","name":"Documentum - Change password - 3 - CS - Installation Owner - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-07-22T03:36:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-3-cs-installation-owner\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Documentum &#8211; Change password &#8211; 3 &#8211; CS &#8211; Installation Owner"}]},{"@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\/10370","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=10370"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10370\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10370"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10370"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10370"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10370"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}