{"id":10377,"date":"2017-07-22T07:57:49","date_gmt":"2017-07-22T05:57:49","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/"},"modified":"2017-07-22T07:57:49","modified_gmt":"2017-07-22T05:57:49","slug":"documentum-change-password-5-csft-jboss-admin","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/","title":{"rendered":"Documentum &#8211; Change password &#8211; 5 &#8211; CS\/FT &#8211; JBoss Admin"},"content":{"rendered":"<p>The next password I wanted to blog about is the JBoss Admin password. As you know, there are several JBoss Application Servers in Documentum. The most used being the ones for the Java Method Server (JMS) and for the Full Text Servers (Dsearch\/IndexAgent). In this blog, I will only talk about the JBoss Admin password of the JMS and IndexAgents simply because I will include the Dsearch JBoss instance in another blog which will talk about the xDB.<\/p>\n<p>&nbsp;<\/p>\n<p>The steps are exactly the same for all JBoss instances, it&#8217;s just a matter of checking\/updating the right file. In this blog, I will still separate the steps for JMS and IndexAgents but that&#8217;s because I usually have more than one IndexAgent on the same FT and therefore I&#8217;m also providing a way to update all JBoss instances at the same time using the right commands.<\/p>\n<p>&nbsp;<\/p>\n<p>As always, I will define an environment variable to store the password to avoid using clear text passwords in the shell. The generic steps to change a JBoss Admin password, in Documentum, are pretty simple:<\/p>\n<ol>\n<li>Store the password in a variable<\/li>\n<li>Encrypt the password<\/li>\n<li>Backup the old configuration file<\/li>\n<li>Replace the password file with the new encrypted password<\/li>\n<li>Restart the component<\/li>\n<li>Checking the connection with the new password<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p>As you can see above, there is actually nothing in these steps to change the password&#8230; We are just replacing a string inside a file with another string and that&#8217;s done, the password is changed! That&#8217;s really simple but that&#8217;s also a security issue since you do NOT need to know the old password&#8230; That&#8217;s how Documentum works with JBoss&#8230;<\/p>\n<p>&nbsp;<\/p>\n<h3>I. JMS JBoss Admin<\/h3>\n<p>For the JMS JBoss Admin, you obviously need to connect to all Content Servers and then perform the steps. Below are the commands I use to set the variable, encrypt the password and the update the password file with the new encrypted password (I&#8217;m just overwriting it):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [5,13,14,15]\">[dmadmin@content_server_01 ~]$ read -s -p \"Please enter the NEW JBoss admin password: \" jboss_admin_pw; echo\nPlease enter the NEW JBoss admin 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 ${jboss_admin_pw}\nAAAAENwH4N2fF92dfRajKzaARvrfnIG29fnqf8Kgnd2fWfYKmMd9x\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ cd $DOCUMENTUM_SHARED\/jboss7.1.1\/server\/DctmServer_MethodServer\/configuration\/\n[dmadmin@content_server_01 ~]$ mv dctm-users.properties dctm-users.properties_bck_$(date \"+%Y%m%d\")\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ echo \"# users.properties file to use with UsersRolesLoginModule\" &gt; dctm-users.properties\n[dmadmin@content_server_01 ~]$ echo \"admin=AAAAENwH4N2fF92dfRajKzaARvrfnIG29fnqf8Kgnd2fWfYKmMd9x\" &gt;&gt; dctm-users.properties\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ cat dctm-users.properties\n# users.properties file to use with UsersRolesLoginModule\nadmin=AAAAENwH4N2fF92dfRajKzaARvrfnIG29fnqf8Kgnd2fWfYKmMd9x\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>At this point, the new password has been put in the file dctm-users.properties in its encrypted form so you can now restart the component and check the status of the JBoss Application Server. To check that, I will use below a small curl command which is really useful&#8230; If just like me you always restrict the JBoss Administration Console to 127.0.0.1 (localhost only), for security reasons, then this is really awesome since you don&#8217;t need to start a X server and you don&#8217;t need to start a browser and all this stuff, simply put the password when asked and voila!<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [8,10,17]\">[dmadmin@content_server_01 ~]$ cd $DOCUMENTUM_SHARED\/jboss7.1.1\/server\n[dmadmin@content_server_01 ~]$ .\/stopMethodServer.sh\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ nohup .\/startMethodServer.sh &gt;&gt; nohup-JMS.out 2&gt;&amp;1 &amp;\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ sleep 30\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ curl -g --user admin -D - http:\/\/localhost:9085\/management --header \"Content-Type: application\/json\" -d '{\"operation\":\"read-attribute\",\"name\":\"server-state\",\"json.pretty\":1}'\nEnter host password for user 'admin':\nHTTP\/1.1 200 OK\nTransfer-encoding: chunked\nContent-type: application\/json\nDate: Sat, 15 Jul 2017 11:16:51 GMT\n\n{\n    \"outcome\" : \"success\",\n    \"result\" : \"running\"\n}\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>If everything has been done properly, you should get a &#8220;HTTP\/1.1 200 OK&#8221; status meaning that the JBoss Application Server is up &amp; running and the &#8220;result&#8221; should be &#8220;running&#8221;. This proves that the password provided in the command match the encrypted one from the file dctm-users.properties because the JMS is able to answer your request.<\/p>\n<p>&nbsp;<\/p>\n<h3>II. IndexAgent JBoss Admin<\/h3>\n<p>For the IndexAgent JBoss Admin, you obviously need to connect to all Full Text Servers and then perform the steps again. Below are the commands to do that. These commands are adapted in case you have several IndexAgents installed. Please note that the commands below will set the same Admin password for all JBoss instances (all IndexAgents JBoss Admin). Therefore, if that&#8217;s not what you want, you will have to take the commands from the JMS section but adapt the paths.<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [5,14,15,16,18,19,20,22,23,24]\">[xplore@full_text_server_01 ~]$ read -s -p \"Please enter the NEW JBoss admin password: \" jboss_admin_pw; echo\nPlease enter the NEW JBoss admin password:\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ $JAVA_HOME\/bin\/java -cp \"$XPLORE_HOME\/dfc\/dfc.jar\" com.documentum.fc.tools.RegistryPasswordUtils ${jboss_admin_pw}\nAAAAENwH4N2cI25WmDdgRzaARvcIvF3g5gR8Kgnd2fWfYKmMd9x\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ cd $XPLORE_HOME\/jboss7.1.1\/server\/\n[xplore@full_text_server_01 ~]$ for i in `ls -d DctmServer_Indexag*`; do mv .\/$i\/configuration\/dctm-users.properties .\/$i\/configuration\/dctm-users.properties_bck_$(date \"+%Y%m%d\"); done\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ for i in `ls -d DctmServer_Indexag*`; do echo \"# users.properties file to use with UsersRolesLoginModule\" &gt; .\/$i\/configuration\/dctm-users.properties; done\n[xplore@full_text_server_01 ~]$ for i in `ls -d DctmServer_Indexag*`; do echo \"AAAAENwH4N2cI25WmDdgRzaARvcIvF3g5gR8Kgnd2fWfYKmMd9x\" &gt;&gt; .\/$i\/configuration\/dctm-users.properties; done\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ for i in `ls -d DctmServer_Indexag*`; do echo \"--$i:\"; cat .\/$i\/configuration\/dctm-users.properties; echo; done\n--DctmServer_Indexagent_DocBase1:\n# users.properties file to use with UsersRolesLoginModule\nAAAAENwH4N2cI25WmDdgRzaARvcIvF3g5gR8Kgnd2fWfYKmMd9x\n\n--DctmServer_Indexagent_DocBase2:\n# users.properties file to use with UsersRolesLoginModule\nAAAAENwH4N2cI25WmDdgRzaARvcIvF3g5gR8Kgnd2fWfYKmMd9x\n\n--DctmServer_Indexagent_DocBase3:\n# users.properties file to use with UsersRolesLoginModule\nAAAAENwH4N2cI25WmDdgRzaARvcIvF3g5gR8Kgnd2fWfYKmMd9x\n\n[xplore@full_text_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>At this point, the new password has been put in its encrypted form in the file dctm-users.properties for each IndexAgent. So, the next step is to restart all the components and check the status of the JBoss instances. Just like for the JMS, I will use below the curl command to check the status of a specific IndexAgent:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [7,9,16]\">[xplore@full_text_server_01 ~]$ for i in `ls stopIndexag*.sh`; do .\/$i; done\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ for i in `ls startIndexag*.sh`; do ia=`echo $i|sed 's,start(.*).sh,1,'`; nohup .\/$i &gt;&gt; nohup-$ia.out 2&gt;&amp;1 &amp;; done\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ sleep 30\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ curl -g --user admin -D - http:\/\/localhost:9205\/management --header \"Content-Type: application\/json\" -d '{\"operation\":\"read-attribute\",\"name\":\"server-state\",\"json.pretty\":1}'\nEnter host password for user 'admin':\nHTTP\/1.1 200 OK\nTransfer-encoding: chunked\nContent-type: application\/json\nDate: Sat, 15 Jul 2017 12:00:35 GMT\n\n{\n    \"outcome\" : \"success\",\n    \"result\" : \"running\"\n}\n[xplore@full_text_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>If you want to check all IndexAgents at once, you can use this command instead (it&#8217;s a long one I know&#8230;):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [3,5,13,15,17,25,27,29,37]\">[xplore@full_text_server_01 ~]$ for i in `ls -d DctmServer_Indexag*`; do port=`grep '&lt;socket-binding .*name=\"management-http\"' .\/$i\/configuration\/standalone.xml|sed 's,.*http.port:([0-9]*).*,1,'`; echo; echo \"  ** Please enter below the password for '$i' ($port)\"; curl -g --user admin -D - http:\/\/localhost:$port\/management --header \"Content-Type: application\/json\" -d '{\"operation\":\"read-attribute\",\"name\":\"server-state\",\"json.pretty\":1}'; done\n\n  ** Please enter below the password for 'DctmServer_Indexagent_DocBase1' (9205)\nEnter host password for user 'admin':\nHTTP\/1.1 200 OK\nConnection: keep-alive\nContent-Type: application\/json; charset=utf-8\nContent-Length: 55\nDate: Sat, 15 Jul 2017 12:37:35 GMT\n\n{\n    \"outcome\" : \"success\",\n    \"result\" : \"running\"\n}\n  ** Please enter below the password for 'DctmServer_Indexagent_DocBase2' (9225)\nEnter host password for user 'admin':\nHTTP\/1.1 200 OK\nConnection: keep-alive\nContent-Type: application\/json; charset=utf-8\nContent-Length: 55\nDate: Sat, 15 Jul 2017 12:37:42 GMT\n\n{\n    \"outcome\" : \"success\",\n    \"result\" : \"running\"\n}\n  ** Please enter below the password for 'DctmServer_Indexagent_DocBase3' (9245)\nEnter host password for user 'admin':\nHTTP\/1.1 200 OK\nConnection: keep-alive\nContent-Type: application\/json; charset=utf-8\nContent-Length: 55\nDate: Sat, 15 Jul 2017 12:37:45 GMT\n\n{\n    \"outcome\" : \"success\",\n    \"result\" : \"running\"\n}\n[xplore@full_text_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>If everything has been done properly, you should get a &#8220;HTTP\/1.1 200 OK&#8221; status for all IndexAgents.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The next password I wanted to blog about is the JBoss Admin password. As you know, there are several JBoss Application Servers in Documentum. The most used being the ones for the Java Method Server (JMS) and for the Full Text Servers (Dsearch\/IndexAgent). In this blog, I will only talk about the JBoss Admin password [&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":[1140,1135,1141,129,118,1142],"type_dbi":[],"class_list":["post-10377","post","type-post","status-publish","format-standard","hentry","category-enterprise-content-management","tag-admin","tag-change-password","tag-console","tag-documentum","tag-jboss","tag-management"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Documentum - Change password - 5 - CS\/FT - JBoss Admin - 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-5-csft-jboss-admin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - Change password - 5 - CS\/FT - JBoss Admin\" \/>\n<meta property=\"og:description\" content=\"The next password I wanted to blog about is the JBoss Admin password. As you know, there are several JBoss Application Servers in Documentum. The most used being the ones for the Java Method Server (JMS) and for the Full Text Servers (Dsearch\/IndexAgent). In this blog, I will only talk about the JBoss Admin password [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-22T05:57:49+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-5-csft-jboss-admin\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-5-csft-jboss-admin\\\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; Change password &#8211; 5 &#8211; CS\\\/FT &#8211; JBoss Admin\",\"datePublished\":\"2017-07-22T05:57:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-5-csft-jboss-admin\\\/\"},\"wordCount\":696,\"commentCount\":0,\"keywords\":[\"Admin\",\"Change Password\",\"Console\",\"Documentum\",\"JBoss\",\"Management\"],\"articleSection\":[\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-5-csft-jboss-admin\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-5-csft-jboss-admin\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-5-csft-jboss-admin\\\/\",\"name\":\"Documentum - Change password - 5 - CS\\\/FT - JBoss Admin - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-07-22T05:57:49+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-5-csft-jboss-admin\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-5-csft-jboss-admin\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-5-csft-jboss-admin\\\/#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; 5 &#8211; CS\\\/FT &#8211; JBoss Admin\"}]},{\"@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 15 years of experience in Digitalization &amp; 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 HTTPD\\\/Tomcat, 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:\\\/\\\/www.dbi-services.com\\\/blog\\\/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 - 5 - CS\/FT - JBoss Admin - 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-5-csft-jboss-admin\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - Change password - 5 - CS\/FT - JBoss Admin","og_description":"The next password I wanted to blog about is the JBoss Admin password. As you know, there are several JBoss Application Servers in Documentum. The most used being the ones for the Java Method Server (JMS) and for the Full Text Servers (Dsearch\/IndexAgent). In this blog, I will only talk about the JBoss Admin password [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/","og_site_name":"dbi Blog","article_published_time":"2017-07-22T05:57:49+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-5-csft-jboss-admin\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; Change password &#8211; 5 &#8211; CS\/FT &#8211; JBoss Admin","datePublished":"2017-07-22T05:57:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/"},"wordCount":696,"commentCount":0,"keywords":["Admin","Change Password","Console","Documentum","JBoss","Management"],"articleSection":["Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/","name":"Documentum - Change password - 5 - CS\/FT - JBoss Admin - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-07-22T05:57:49+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/#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; 5 &#8211; CS\/FT &#8211; JBoss Admin"}]},{"@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 15 years of experience in Digitalization &amp; 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 HTTPD\/Tomcat, 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:\/\/www.dbi-services.com\/blog\/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\/10377","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=10377"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10377\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10377"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10377"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10377"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10377"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}