{"id":10358,"date":"2017-07-15T08:30:23","date_gmt":"2017-07-15T06:30:23","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/"},"modified":"2017-07-15T08:30:23","modified_gmt":"2017-07-15T06:30:23","slug":"documentum-change-password-2-cs-dm_bof_registry","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/","title":{"rendered":"Documentum &#8211; Change password &#8211; 2 &#8211; CS &#8211; dm_bof_registry"},"content":{"rendered":"<p>When installing a Global Registry on a Content Server, you will be asked to setup the BOF username and password. The name of this user is by default &#8220;dm_bof_registry&#8221; so even if you can change it, I will use this value in this blog. This is one of the important accounts that are being created inside the Global Registry. So, what would be the needed steps to change the password of this account?<\/p>\n<p>&nbsp;<\/p>\n<p>Let&#8217;s start with the simple part: changing the password of the account in the Global Registry. For this, I will use iapi below but you can do the same thing using Documentum Administrator, idql, dqMan or anything else that works. First, let&#8217;s login on the Content Server, switch to the Installation Owner&#8217;s account and start with defining an environment variable that will contain the NEW password to be used:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ read -s -p \"Please enter the dm_bof_registry password: \" bof_pwd; echo\nPlease enter the dm_bof_registry password:\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>Once that is done, we can now execute the iapi commands below to update the password for the dm_bof_registry account. As there is a local trust on the Content Server with the Installation Owner, I don&#8217;t need to enter the password, so I use &#8220;xxx&#8221; instead to login to the Global Registry (GR_DOCBASE). Execute the commands below one after the other and don&#8217;t include the &#8220;&gt; &#8221; characters, just past the iapi commands and after pasting the final EOF, an iapi session will be opened and all commands will be executed, like that:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ iapi GR_DOCBASE -Udmadmin -Pxxx &lt;&lt; EOF\n&gt; retrieve,c,dm_user where user_login_name='dm_bof_registry'\n&gt; set,c,l,user_password\n&gt; $bof_pwd\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 010f123456000905 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; Bye\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>Then to verify that the password has been set properly in the Global Registry, we can try to login with the dm_bof_registry account:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [11,16]\">[dmadmin@content_server_01 ~]$ echo quit | iapi GR_DOCBASE -Udm_bof_registry -P$bof_pwd\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 010f123456000906 started for user dm_bof_registry.\"\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>If the password has been changed properly, the output will be similar to the one above: a session will be opened and the only command executed will be &#8220;quit&#8221; which will close the iapi session automatically. That was pretty easy, right? Well that&#8217;s clearly not all there is to do to change the BOF password, unfortunately&#8230;<\/p>\n<p>&nbsp;<\/p>\n<p>The &#8220;problem&#8221; with the dm_bof_registry account is that it is used on all DFC Clients to register them, to establish trust, aso&#8230; Therefore, if you change the password of this account, you will need to reflect this change on all clients that are connecting to your Content Servers. In the steps below, I will provide some commands that can be used to do that on the different typical DFC clients (JMS, xPlore, DA, D2, &#8230;). If I&#8217;m not talking about one of your DFC client, then basically the steps are always the same, it&#8217;s just the commands that differs:<\/p>\n<ul>\n<li>Listing all dfc.keystore<\/li>\n<li>Updating the dfc.properties<\/li>\n<li>Removing\/renaming the dfc.keystore files<\/li>\n<li>Restarting the DFC clients<\/li>\n<li>Checking that the dfc.keystore files have been recreated<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>Before going through the different DFC Clients, you first need to encrypt the BOF user&#8217;s password because it is always be used in its encrypted form, so let&#8217;s encrypt it on a Content Server:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [2]\">[dmadmin@content_server_01 ~]$ $JAVA_HOME\/bin\/java -cp $DOCUMENTUM_SHARED\/dfc\/dfc.jar com.documentum.fc.tools.RegistryPasswordUtils ${bof_pwd}\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 our user. 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<h3>I. Content Server<\/h3>\n<p>On the Content Server, the main dfc client is the JMS. You will have one dfc.properties for each JMS application, one global for the CS, aso&#8230; So, let&#8217;s update all that with a few commands only. Normally you should only get the definition of the dfc.globalregistry.password in the file $DOCUMENTUM_SHARED\/config\/dfc.properties. If you got this definition elsewhere, you should maybe consider using the &#8220;#include&#8221; statement to avoid duplicating the definitions&#8230;<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dmadmin@content_server_01 ~]$ for i in `find $DOCUMENTUM_SHARED -type f -name \"dfc.keystore\"`; do ls -l ${i}; done\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ sed -i 's,dfc.globalregistry.password=.*,dfc.globalregistry.password=AAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0,' $DOCUMENTUM_SHARED\/config\/dfc.properties\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ for i in `find $DOCUMENTUM_SHARED -type f -name \"dfc.keystore\"`; do ls -l ${i}; mv \"${i}\" \"${i}_bck_$(date \"+%Y%m%d\")\"; done\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ $DOCUMENTUM_SHARED\/jboss7.1.1\/server\/stopMethodServer.sh\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ nohup $DOCUMENTUM_SHARED\/jboss7.1.1\/server\/startMethodServer.sh &gt;&gt; $DOCUMENTUM_SHARED\/jboss7.1.1\/server\/nohup-JMS.out 2&gt;&amp;1 &amp;\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ for i in `find $DOCUMENTUM_SHARED -type f -name \"dfc.keystore\"`; do ls -l ${i}; done<\/pre>\n<p>&nbsp;<\/p>\n<p>If you do it properly, all the dfc.keystore files will be recreated with the restart and you can verify that by comparing the output of the first and last commands.<\/p>\n<p>&nbsp;<\/p>\n<h3>II. WebLogic Server<\/h3>\n<p>In this part, I will assume a WebLogic Server is used for the D2, D2-Config and DA applications. If you are using Tomcat instead, then just adapt the path. Below I will use:<\/p>\n<ul>\n<li>$WLS_APPLICATIONS as the directory where all the Application WAR files are present. If you are using exploded applications (it&#8217;s just a folder, not a WAR file) OR if you are using an external dfc.properties file (it&#8217;s possible even with a WAR file to extract the dfc.properties for it), then the &#8220;jar -xvf&#8221; and &#8220;jar -uvf&#8221; commands aren&#8217;t needed.<\/li>\n<li>$WLS_APPS_DATA as the directory where the Application Data are present (Application 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. All I&#8217;m doing below is just updating the dfc.properties files for D2, D2-Config and DA in order to use the new encrypted password.<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[weblogic@weblogic_server_01 ~]$ for i in `find $WLS_APPS_DATA -type f -name \"dfc.keystore\"`; do ls -l ${i}; done\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ cd $WLS_APPLICATIONS\/\n[weblogic@weblogic_server_01 ~]$ jar -xvf D2.war WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$ sed -i 's,dfc.globalregistry.password=.*,dfc.globalregistry.password=AAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0,' WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$ jar -uvf D2.war WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ jar -xvf D2-Config.war WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$ sed -i 's,dfc.globalregistry.password=.*,dfc.globalregistry.password=AAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0,' WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$ jar -uvf D2-Config.war WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ jar -xvf da.war WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$ sed -i 's,dfc.globalregistry.password=.*,dfc.globalregistry.password=AAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0,' WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$ jar -uvf da.war WEB-INF\/classes\/dfc.properties\n[weblogic@weblogic_server_01 ~]$\n[weblogic@weblogic_server_01 ~]$ for i in `find $WLS_APPS_DATA -type f -name \"dfc.keystore\"`; do ls -l ${i}; mv \"${i}\" \"${i}_bck_$(date \"+%Y%m%d\")\"; done<\/pre>\n<p>&nbsp;<\/p>\n<p>Once done, the next steps depend, again, on how you configured your Application Server. If you are using WAR files, you will need to redeploy them. If not, you might have to restart your Application Server for the change to be taken into account and for the keystore file to be re-created.<\/p>\n<p>&nbsp;<\/p>\n<h3>III. Full Text Server<\/h3>\n<p>On the Full Text Server, it&#8217;s again the same stuff but for all Index Agents this time.<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[xplore@xplore_server_01 ~]$ for i in `find $XPLORE_HOME -type f -name \"dfc.keystore\"`; do ls -l ${i}; done\n[xplore@xplore_server_01 ~]$\n[xplore@xplore_server_01 ~]$ for i in `ls $XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_*\/deployments\/IndexAgent.war\/WEB-INF\/classes\/dfc.properties`; do sed -i 's,dfc.globalregistry.password=.*,dfc.globalregistry.password=AAAAEE0QvvSIFuiXKd4kNg2Ff1dLf0gacNpofNLtKxoGd2iDFQax0,' ${i}; done\n[xplore@xplore_server_01 ~]$\n[xplore@xplore_server_01 ~]$ for i in `find $XPLORE_HOME -type f -name \"dfc.keystore\"`; do ls -l ${i}; mv \"${i}\" \"${i}_bck_$(date \"+%Y%m%d\")\"; done\n[xplore@xplore_server_01 ~]$\n[xplore@xplore_server_01 ~]$ service xplore stop\n[xplore@xplore_server_01 ~]$ service xplore start\n[xplore@xplore_server_01 ~]$\n[xplore@xplore_server_01 ~]$ for i in `find $XPLORE_HOME -type f -name \"dfc.keystore\"`; do ls -l ${i}; done<\/pre>\n<p>&nbsp;<\/p>\n<p>Again if you do it properly, all the dfc.keystore files will be recreated with the restart.<\/p>\n<p>&nbsp;<\/p>\n<p>When everything has been done, just let the environment up&amp;running for some time and check the logs for authentication failures regarding the dm_bof_registry user. As you saw above, changing the dm_bof_registry password isn&#8217;t really complicated but it&#8217;s quite redundant and time consuming so better script all this! \ud83d\ude42<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When installing a Global Registry on a Content Server, you will be asked to setup the BOF username and password. The name of this user is by default &#8220;dm_bof_registry&#8221; so even if you can change it, I will use this value in this blog. This is one of the important accounts that are being created [&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,1136,129],"type_dbi":[],"class_list":["post-10358","post","type-post","status-publish","format-standard","hentry","category-enterprise-content-management","tag-change-password","tag-dm_bof_registry","tag-documentum"],"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 - Change password - 2 - CS - dm_bof_registry - 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-2-cs-dm_bof_registry\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - Change password - 2 - CS - dm_bof_registry\" \/>\n<meta property=\"og:description\" content=\"When installing a Global Registry on a Content Server, you will be asked to setup the BOF username and password. The name of this user is by default &#8220;dm_bof_registry&#8221; so even if you can change it, I will use this value in this blog. This is one of the important accounts that are being created [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-15T06:30:23+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-2-cs-dm_bof_registry\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-2-cs-dm_bof_registry\\\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; Change password &#8211; 2 &#8211; CS &#8211; dm_bof_registry\",\"datePublished\":\"2017-07-15T06:30:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-2-cs-dm_bof_registry\\\/\"},\"wordCount\":985,\"commentCount\":0,\"keywords\":[\"Change Password\",\"dm_bof_registry\",\"Documentum\"],\"articleSection\":[\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-2-cs-dm_bof_registry\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-2-cs-dm_bof_registry\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-2-cs-dm_bof_registry\\\/\",\"name\":\"Documentum - Change password - 2 - CS - dm_bof_registry - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-07-15T06:30:23+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-2-cs-dm_bof_registry\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-2-cs-dm_bof_registry\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-2-cs-dm_bof_registry\\\/#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; 2 &#8211; CS &#8211; dm_bof_registry\"}]},{\"@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 - 2 - CS - dm_bof_registry - 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-2-cs-dm_bof_registry\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - Change password - 2 - CS - dm_bof_registry","og_description":"When installing a Global Registry on a Content Server, you will be asked to setup the BOF username and password. The name of this user is by default &#8220;dm_bof_registry&#8221; so even if you can change it, I will use this value in this blog. This is one of the important accounts that are being created [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/","og_site_name":"dbi Blog","article_published_time":"2017-07-15T06:30:23+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-2-cs-dm_bof_registry\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; Change password &#8211; 2 &#8211; CS &#8211; dm_bof_registry","datePublished":"2017-07-15T06:30:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/"},"wordCount":985,"commentCount":0,"keywords":["Change Password","dm_bof_registry","Documentum"],"articleSection":["Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/","name":"Documentum - Change password - 2 - CS - dm_bof_registry - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-07-15T06:30:23+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-2-cs-dm_bof_registry\/#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; 2 &#8211; CS &#8211; dm_bof_registry"}]},{"@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\/10358","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=10358"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10358\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10358"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10358"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10358"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10358"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}