{"id":10371,"date":"2017-07-22T06:58:59","date_gmt":"2017-07-22T04:58:59","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/"},"modified":"2017-07-22T06:58:59","modified_gmt":"2017-07-22T04:58:59","slug":"documentum-change-password-4-cs-presets-preferences","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/","title":{"rendered":"Documentum &#8211; Change password &#8211; 4 &#8211; CS &#8211; Presets &amp; Preferences"},"content":{"rendered":"<p>In a previous blog (<a title=\"Documentum \u2013 Change password \u2013 2 \u2013 CS \u2013 dm_bof_registry\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/\" target=\"_blank\" rel=\"noopener\">see this one<\/a>), I already provided the steps to change the BOF password and I mentioned that this was more or less the only important account in the Global Registry. Well in this blog, I will show you how to change the passwords for the two other important accounts: the Presets and Preferences accounts.<\/p>\n<p>&nbsp;<\/p>\n<p>These two accounts can actually be created in a dedicated repository for performance reasons but by default they will be taken from the Global Registry and they are used &#8211; as you can easily understand &#8211; to create Presets and Preferences&#8230;<\/p>\n<p>&nbsp;<\/p>\n<p>As said above, these accounts are docbase accounts so let&#8217;s start with setting up some environment variable containing the passwords and then updating their passwords on a Content Server:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ read -s -p \"Please enter the NEW Preset password: \" prespw; echo\nPlease enter the NEW Preset password:\n[dmadmin@content_server_01 ~]$ read -s -p \"Please enter the NEW Preferences password: \" prefpw; echo\nPlease enter the NEW Preferences password:\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ iapi GR_DOCBASE -Udmadmin -Pxxx &lt;&lt; EOF\n&gt; retrieve,c,dm_user where user_login_name='dmc_wdk_presets_owner'\n&gt; set,c,l,user_password\n&gt; $prespw\n&gt; save,c,l\n&gt; retrieve,c,dm_user where user_login_name='dmc_wdk_preferences_owner'\n&gt; set,c,l,user_password\n&gt; $prefpw\n&gt; save,c,l\n&gt; EOF\n\n\n    EMC Documentum iapi - Interactive API interface\n    (c) Copyright EMC Corp., 1992 - 2015\n    All rights reserved.\n    Client Library Release 7.2.0000.0054\n\n\nConnecting to Server using docbase GR_DOCBASE\n[DM_SESSION_I_SESSION_START]info:  \"Session 010f123456000907 started for user dmadmin.\"\n\n\nConnected to Documentum Server running Release 7.2.0000.0155  Linux64.Oracle\nSession id is s0\nAPI&gt; ...\n110f123456000144\nAPI&gt; SET&gt; ...\nOK\nAPI&gt; ...\nOK\nAPI&gt; ...\n110f123456000145\nAPI&gt; SET&gt; ...\nOK\nAPI&gt; ...\nOK\nAPI&gt; Bye\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>Again, to verify that the passwords have been set properly, you can try to login to the respective accounts:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [11,28]\">[dmadmin@content_server_01 ~]$ echo quit | iapi GR_DOCBASE -Udmc_wdk_presets_owner -P$prespw\n\n\n    EMC Documentum iapi - Interactive API interface\n    (c) Copyright EMC Corp., 1992 - 2015\n    All rights reserved.\n    Client Library Release 7.2.0000.0054\n\n\nConnecting to Server using docbase GR_DOCBASE\n[DM_SESSION_I_SESSION_START]info:  \"Session 010f123456000908 started for user dmc_wdk_presets_owner.\"\n\n\nConnected to Documentum Server running Release 7.2.0000.0155  Linux64.Oracle\nSession id is s0\nAPI&gt; Bye\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ echo quit | iapi GR_DOCBASE -Udmc_wdk_preferences_owner -P$prefpw\n\n\n    EMC Documentum iapi - Interactive API interface\n    (c) Copyright EMC Corp., 1992 - 2015\n    All rights reserved.\n    Client Library Release 7.2.0000.0054\n\n\nConnecting to Server using docbase GR_DOCBASE\n[DM_SESSION_I_SESSION_START]info:  \"Session 010f123456000909 started for user dmc_wdk_preferences_owner.\"\n\n\nConnected to Documentum Server running Release 7.2.0000.0155  Linux64.Oracle\nSession id is s0\nAPI&gt; Bye\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>When the docbase account has been updated, the first part is done. That&#8217;s good but just like for the BOF account, you still need to update the references everywhere&#8230; Fortunately for the Presets and Preferences accounts there are less references so it&#8217;s less a pain in the&#8230; \ud83d\ude09<\/p>\n<p>&nbsp;<\/p>\n<p>There are references to these two accounts in the WDK-based Applications. Below I will use Documentum Administrator as an example which is deployed as a WAR file on a WebLogic Server, however the steps would be the same for other Application Servers, except that you might use exploded folders and not war files&#8230; Below I will use:<\/p>\n<ul>\n<li>$WLS_APPLICATIONS as the directory where the DA WAR file is present.<\/li>\n<li>$WLS_APPS_DATA as the directory where the Data are present (log files, dfc.keystore, cache, &#8230;).<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>These two folders might be the same depending on how you configured your Application Server. So, first of all, let&#8217;s encrypt the two passwords on the Application Server using the DA libraries:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [10,11]\">[weblogic@weblogic_server_01 ~]$ cd $WLS_APPLICATIONS\/\n[weblogic@weblogic_server_01 ~]$ jar -xvf da.war wdk\/app.xml WEB-INF\/classes WEB-INF\/lib\/dfc.jar WEB-INF\/lib\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ read -s -p \"Please enter the NEW Preset password: \" prespw; echo\nPlease enter the NEW Preset password:\n[weblogic@weblogic_server_01 ~]$ read -s -p \"Please enter the NEW Preferences password: \" prefpw; echo\nPlease enter the NEW Preferences password:\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ java -Djava.security.egd=file:\/\/\/dev\/.\/urandom -classpath WEB-INF\/classes:WEB-INF\/lib\/dfc.jar:WEB-INF\/lib\/commons-io-1.2.jar com.documentum.web.formext.session.TrustedAuthenticatorTool $prespw $prefpw\nEncrypted: [jpQm5FfqdD3HWqP4mgoIIw==], Decrypted: [Pr3seTp4sSwoRd]\nEncrypted: [YaGqNkj2FqfQDn3gfna8Nw==], Decrypted: [Pr3feRp4sSwoRd]\n[weblogic@weblogic_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>Once this has been done, let&#8217;s check the old passwords, updating them in the app.xml file for DA and then checking that the update has been done. The sed commands below are pretty simple: the first part will search for the parent XML tag (so either &lt;presets&gt;&#8230;&lt;\/presets&gt; or &lt;preferencesrepository&gt;&#8230;&lt;\/preferencesrepository&gt;) and the second part will replace the first occurrence of the &lt;password&gt;&#8230;&lt;\/password&gt; line INSIDE the XML tag mentioned in the command (presets or preferencesrepository) with the new password we encrypted before. So, again, just replace my encrypted password with what you got:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [18,22]\">[weblogic@weblogic_server_01 ~]$ grep -C20 \"&lt;password&gt;.*&lt;\/password&gt;\" wdk\/app.xml | grep -E \"dmc_|&lt;\/password&gt;|presets&gt;|preferencesrepository&gt;\"\n         &lt;presets&gt;\n            &lt;!-- Encrypted password for default preset user \"dmc_wdk_presets_owner\" --&gt;\n            &lt;password&gt;tqQd5gfWGF3tVacfmgwL2w==&lt;\/password&gt;\n         &lt;\/presets&gt;\n         &lt;preferencesrepository&gt;\n            &lt;!-- Encrypted password for default preference user \"dmc_wdk_preferences_owner\" --&gt;\n            &lt;password&gt;LdFinAwf2F2fuB29cqfs2w==&lt;\/password&gt;\n         &lt;\/preferencesrepository&gt;\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ sed -i \"\/&lt;presets&gt;\/,\/&lt;\/presets&gt;\/ s,&lt;password&gt;.*&lt;\/password&gt;,&lt;password&gt;jpQm5FfqdD3HWqP4mgoIIw==&lt;\/password&gt;,\" wdk\/app.xml\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ sed -i \"\/&lt;preferencesrepository&gt;\/,\/&lt;\/preferencesrepository&gt;\/ s,&lt;password&gt;.*&lt;\/password&gt;,&lt;password&gt;YaGqNkj2FqfQDn3gfna8Nw==&lt;\/password&gt;,\" wdk\/app.xml\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ grep -C20 \"&lt;password&gt;.*&lt;\/password&gt;\" wdk\/app.xml | grep -E \"dmc_|&lt;\/password&gt;|presets&gt;|preferencesrepository&gt;\"\n         &lt;presets&gt;\n            &lt;!-- Encrypted password for default preset user \"dmc_wdk_presets_owner\" --&gt;\n            &lt;password&gt;jpQm5FfqdD3HWqP4mgoIIw==&lt;\/password&gt;\n         &lt;\/presets&gt;\n         &lt;preferencesrepository&gt;\n            &lt;!-- Encrypted password for default preference user \"dmc_wdk_preferences_owner\" --&gt;\n            &lt;password&gt;YaGqNkj2FqfQDn3gfna8Nw==&lt;\/password&gt;\n         &lt;\/preferencesrepository&gt;\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ jar -uvf da.war wdk\/app.xml\n[weblogic@weblogic_server_01 ~]$ rm -rf WEB-INF\/ wdk\/\n[weblogic@weblogic_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>Normally the passwords returned by the second grep command should be different and they should match the ones returned by the JAVA previously executed to encrypt the Presets and Preferences passwords. Once that is done, simply repack the war file and redeploy it (if needed).<\/p>\n<p>&nbsp;<\/p>\n<p>To verify that the passwords are properly set you can simply stop DA, remove the cache containing the Presets&#8217; jars and restart DA. If the jars are automatically re-created, then the passwords should be OK:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[weblogic@weblogic_server_01 ~]$ cd $WLS_APPS_DATA\/documentum.da\/dfc.data\/cache\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ ls -l\ntotal 4\ndrwxr-x---. 4 weblogic weblogic 4096 Jul 15 20:58 7.3.0000.0205\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ ls -l .\/7.3.*\/bof\/*\/\n...\n[weblogic@weblogic_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>This last &#8216;ls&#8217; command will display a list of 10 or 15 jars (12 for me in DA 7.3 GA release) as well as a few files (content.lck, content.xml and GR_DOCBASE.lck usually). If you don&#8217;t see any jar files before the restart, it means the old password was probably not correct&#8230; Ok so now to verify that the new passwords have been put properly in the app.xml file, simply stop the Managed Server hosting DA with your preferred way (I will use &#8220;msDA-01&#8221; for the example below), then remove the cache folder and restart DA. Once DA is up&amp;running again, it will re-create this cache folder in a few seconds and all the jars should be back:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[weblogic@weblogic_server_01 ~]$ $DOMAIN_HOME\/bin\/startstop stop msDA-01\n  ** Managed Server msDA-01 stopped\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ rm -rf .\/7.3*\/\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ $DOMAIN_HOME\/bin\/startstop start msDA-01\n  ** Managed Server msDA-01 started\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ sleep 30\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ ls -l .\/7.3.*\/bof\/*\/\n...\n[weblogic@weblogic_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>If you did it properly, the jars will be back. If you want a list of the jars that should be present, take a look at the file &#8220;.\/7.3.*\/bof\/*\/content.xml&#8221;. Obviously above I was using the DA 7.3 GA so my cache folder starts with 7.3.xxx. If you are using another version of DA, the name of this folder will change so just keep that in mind.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In a previous blog (see this one), I already provided the steps to change the BOF password and I mentioned that this was more or less the only important account in the Global Registry. Well in this blog, I will show you how to change the passwords for the two other important accounts: the Presets [&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,129,1138,1139],"type_dbi":[],"class_list":["post-10371","post","type-post","status-publish","format-standard","hentry","category-enterprise-content-management","tag-change-password","tag-documentum","tag-preferences","tag-presets"],"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 - 4 - CS - Presets &amp; Preferences - 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-4-cs-presets-preferences\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - Change password - 4 - CS - Presets &amp; Preferences\" \/>\n<meta property=\"og:description\" content=\"In a previous blog (see this one), I already provided the steps to change the BOF password and I mentioned that this was more or less the only important account in the Global Registry. Well in this blog, I will show you how to change the passwords for the two other important accounts: the Presets [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-22T04:58:59+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=\"8 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-4-cs-presets-preferences\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; Change password &#8211; 4 &#8211; CS &#8211; Presets &amp; Preferences\",\"datePublished\":\"2017-07-22T04:58:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/\"},\"wordCount\":714,\"commentCount\":0,\"keywords\":[\"Change Password\",\"Documentum\",\"Preferences\",\"Presets\"],\"articleSection\":[\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/\",\"name\":\"Documentum - Change password - 4 - CS - Presets &amp; Preferences - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2017-07-22T04:58:59+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/#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; 4 &#8211; CS &#8211; Presets &amp; Preferences\"}]},{\"@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 - 4 - CS - Presets &amp; Preferences - 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-4-cs-presets-preferences\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - Change password - 4 - CS - Presets &amp; Preferences","og_description":"In a previous blog (see this one), I already provided the steps to change the BOF password and I mentioned that this was more or less the only important account in the Global Registry. Well in this blog, I will show you how to change the passwords for the two other important accounts: the Presets [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/","og_site_name":"dbi Blog","article_published_time":"2017-07-22T04:58:59+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; Change password &#8211; 4 &#8211; CS &#8211; Presets &amp; Preferences","datePublished":"2017-07-22T04:58:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/"},"wordCount":714,"commentCount":0,"keywords":["Change Password","Documentum","Preferences","Presets"],"articleSection":["Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/","name":"Documentum - Change password - 4 - CS - Presets &amp; Preferences - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-07-22T04:58:59+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-4-cs-presets-preferences\/#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; 4 &#8211; CS &#8211; Presets &amp; Preferences"}]},{"@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\/10371","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=10371"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10371\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10371"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10371"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10371"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10371"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}