{"id":10388,"date":"2017-07-29T09:29:33","date_gmt":"2017-07-29T07:29:33","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/"},"modified":"2017-07-29T09:29:33","modified_gmt":"2017-07-29T07:29:33","slug":"documentum-change-password-6-csft-jks","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/","title":{"rendered":"Documentum &#8211; Change password &#8211; 6 &#8211; CS\/FT &#8211; JKS"},"content":{"rendered":"<p>Just like for the JBoss Admin password (<a title=\"Documentum \u2013 Change password \u2013 5 \u2013 CS\/FT \u2013 JBoss Admin\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-5-csft-jboss-admin\/\" target=\"_blank\" rel=\"noopener\">here<\/a>), this blog will be for both Content Servers and Full Text Servers. I will provide commands below to change the passwords of the Java KeyStore for the Java Method Server (JMS) and Full Text Servers (Dsearch\/IndexAgent). Again, JKS aren&#8217;t only used in the scope of Documentum so if you are here for the JKS and not for Documentum, that&#8217;s fine too ;).<\/p>\n<p>&nbsp;<\/p>\n<p>The steps are exactly the same for all JKS files, it&#8217;s just a matter of integrating that inside Documentum. Therefore, I will continue to use the JMS for single JKS update and I will use the Dsearch\/IndexAgent for multiple updates. The steps are pretty simple:<\/p>\n<ol>\n<li>Store the current and new password in variables<\/li>\n<li>Backup the old configuration and JKS files<\/li>\n<li>Update the JKS password<\/li>\n<li>Restart the components<\/li>\n<li>Verify that the components are running over https<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h3>I. JMS Java KeyStore<\/h3>\n<p>For the JMS Java KeyStore, you obviously need to connect to all Content Servers and then perform the steps. Below, I&#8217;m using a JKS named &#8220;my.keystore&#8221; which is placed right next to the standalone.xml file. So let&#8217;s do that:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [6,12,13]\">[dmadmin@content_server_01 ~]$ read -s -p \"Please enter the CURRENT JKS password: \" currentpw; echo\nPlease enter the CURRENT JKS password:\n[dmadmin@content_server_01 ~]$ read -s -p \"Please enter the NEW JKS password: \" newpw; echo\nPlease enter the NEW JKS password:\n[dmadmin@content_server_01 ~]$ read -p \"Please enter the name of the JKS file with extension: \" jks_name\nPlease enter the name of the JKS file with extension: my.keystore\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 ~]$ cp ${jks_name} ${jks_name}_bck_$(date +\"%Y%m%d-%H%M%S\")\n[dmadmin@content_server_01 ~]$ cp standalone.xml standalone.xml_bck_$(date +\"%Y%m%d-%H%M%S\")\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ keytool -storepasswd -keystore ${jks_name} -storepass ${currentpw} -new ${newpw}\n[dmadmin@content_server_01 ~]$ keytool -keypasswd -keystore ${jks_name} -storepass ${newpw} -alias jms_alias -keypass ${currentpw} -new ${newpw}\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>These last two commands are the ones updating the Java KeyStore and the key passwords. In case your JKS and its included key do not have the same password, you will have to use the real passwords at the end of the second line. If the last command (the 2nd keytool command) is working, it means that you changed the JKS password properly in the first keytool command because you are now able to change the key password using the new JKS password (-storepass ${newpw}). Still following me?<\/p>\n<p>Once this has been done, the next step is simply to update the password in the JMS configuration file and restart the JMS:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [2,4,7,16,17,22]\">[dmadmin@content_server_01 ~]$ grep \"password=\" standalone.xml\n                &lt;ssl name=\"https\" password=\"Old_JKS_Password\" certificate-key-file=\"$DOCUMENTUM_SHARED\/jboss7.1.1\/server\/DctmServer_MethodServer\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ sed -i 's,(&lt;[sk][se][ly].*password=\")[^\"]*,1'${newpw}',' standalone.xml\n[dmadmin@content_server_01 ~]$\n[dmadmin@content_server_01 ~]$ grep \"password=\" standalone.xml\n                &lt;ssl name=\"https\" password=\"New_JKS_Password\" certificate-key-file=\"$DOCUMENTUM_SHARED\/jboss7.1.1\/server\/DctmServer_MethodServer\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n[dmadmin@content_server_01 ~]$\n[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 -k -D - https:\/\/localhost:9082\/DmMethods\/servlet\/DoMethod; echo\nHTTP\/1.1 200 OK\nContent-Length: 144\nDate: Sat, 22 Jul 2017 09:58:41 GMT\nServer: MethodServer\n\n&lt;html&gt;&lt;title&gt;Documentum Java Method Server&lt;\/title&gt;&lt;body&gt;&lt;font face=\"Verdana, Arial\" size=\"-1\"&gt;&lt;p&gt;Documentum Java Method Server&lt;\/p&gt;&lt;\/body&gt;&lt;\/html&gt;\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>If the password of the JKS has been changed properly for the JKS file as well as in the configuration file, then you should get an HTTP 200 OK return code.<\/p>\n<p>&nbsp;<\/p>\n<h3>II. Dsearch\/IndexAgent Java KeyStores<\/h3>\n<p>For the Dsearch\/IndexAgent Java KeyStores, you obviously need to connect to all Full Text Servers and then perform the steps again. Below, I&#8217;m using a JKS named &#8220;my.keystore&#8221;. It doesn&#8217;t matter where this file is placed since the commands below will anyway just find them. However, by default this file will be placed right next to the standalone.xml file: this is the default setup if you used the &#8220;ConfigSSL.groovy&#8221; script to setup the xPlore in SSL (see <a title=\"Documentum story \u2013 Setup the DSearch &amp; IndexAgent in HTTPS (xPlore)\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-story-setup-the-dsearch-indexagent-in-https-xplore\/\" target=\"_blank\" rel=\"noopener\">this blog<\/a> for information about that and a lot of other of my blogs to see issues related to this script\/setup in SSL). These commands are adapted in case you have several IndexAgents installed. Please note that the commands below will set the same JKS password for all JBoss instances (all Dsearch\/IndexAgents). Therefore, if that\u2019s not what you want (if you have Subject Alternative Names for example), you will have to execute the commands for each keystore, one by one.<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [6,11,12]\">[xplore@full_text_server_01 ~]$ read -s -p \"Please enter the CURRENT JKS password: \" currentpw; echo\nPlease enter the CURRENT JKS password:\n[xplore@full_text_server_01 ~]$ read -s -p \"Please enter the NEW JKS password: \" newpw; echo\nPlease enter the NEW JKS password:\n[xplore@full_text_server_01 ~]$ read -p \"Please enter the name of the JKS file with extension: \" jks_name\nPlease enter the name of the JKS file with extension: my.keystore\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ for i in `find $XPLORE_HOME -name ${jks_name}`; do cp ${i} ${i}_bck_$(date +\"%Y%m%d-%H%M%S\"); done\n[xplore@full_text_server_01 ~]$ for i in `find $XPLORE_HOME -name standalone.xml`; do if [[ ${i} != *\/template\/* ]]; then cp ${i} ${i}_bck_$(date +\"%Y%m%d-%H%M%S\"); fi; done\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ for i in `find $XPLORE_HOME -name ${jks_name}`; do keytool -storepasswd -keystore ${i} -storepass ${currentpw} -new ${newpw}; done\n[xplore@full_text_server_01 ~]$ for i in `find $XPLORE_HOME -name ${jks_name}`; do keytool -keypasswd -keystore ${i} -storepass ${newpw} -alias ft_alias -keypass ${currentpw} -new ${newpw}; done\n[xplore@full_text_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>At this point, all the Java KeyStore have been backed up and updated and the related standalone.xml files have been backed up too. The only remaining step is to replace the passwords in the standalone.xml files, restart the components and test again the availability of the xPlore components:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [2,3,4,5,10,11,12,13,23,24,33,35,37,38,45,46,53,54]\">[xplore@full_text_server_01 ~]$ for i in `find $XPLORE_HOME -name standalone.xml`; do if [[ ${i} != *\/template\/* ]]; then grep \"password=\" ${i}; fi; done\n                &lt;ssl name=\"https\" password=\"Old_JKS_Password\" certificate-key-file=\"$XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_PrimaryDsearch\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n                &lt;ssl name=\"https\" password=\"Old_JKS_Password\" certificate-key-file=\"$XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_Indexagent_DocBase1\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n                &lt;ssl name=\"https\" password=\"Old_JKS_Password\" certificate-key-file=\"$XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_Indexagent_DocBase2\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n                &lt;ssl name=\"https\" password=\"Old_JKS_Password\" certificate-key-file=\"$XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_Indexagent_DocBase3\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ for i in `find $XPLORE_HOME -name standalone.xml`; do if [[ ${i} != *\/template\/* ]]; then sed -i 's,(&lt;[sk][se][ly].*password=\")[^\"]*,1'${newpw}',' ${i}; fi; done\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ for i in `find $XPLORE_HOME -name standalone.xml`; do if [[ ${i} != *\/template\/* ]]; then grep \"password=\" ${i}; fi; done\n                &lt;ssl name=\"https\" password=\"New_JKS_Password\" certificate-key-file=\"$XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_PrimaryDsearch\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n                &lt;ssl name=\"https\" password=\"New_JKS_Password\" certificate-key-file=\"$XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_Indexagent_DocBase1\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n                &lt;ssl name=\"https\" password=\"New_JKS_Password\" certificate-key-file=\"$XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_Indexagent_DocBase2\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\n                &lt;ssl name=\"https\" password=\"New_JKS_Password\" certificate-key-file=\"$XPLORE_HOME\/jboss7.1.1\/server\/DctmServer_Indexagent_DocBase3\/configuration\/my.keystore\" cipher-suite=\"TLS_RSA_WITH_AES_128_CBC_SHA\"\/&gt;\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 stop*.sh`; do .\/${i}; done\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ nohup .\/startPrimaryDsearch.sh &gt;&gt; nohup-PrimaryDsearch.out 2&gt;&amp;1 &amp;\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 -k -D - https:\/\/localhost:9302\/dsearch\/; echo\nHTTP\/1.1 259\nServer: Apache-Coyote\/1.1\nPragma: No-cache\nCache-Control: no-cache\nExpires: Thu, 01 Jan 1970 00:00:00 UTC\nContent-Type: text\/html;charset=UTF-8\nContent-Length: 65\nDate: Sat, 22 Jul 2017 11:33:38 GMT\n\nThe xPlore instance PrimaryDsearch [version=1.5.0020.0048] normal\n[xplore@full_text_server_01 ~]$\n[xplore@full_text_server_01 ~]$ for i in `ls -d DctmServer_Indexag*`; do port=`grep '&lt;socket-binding .*name=\"https\"' .\/${i}\/configuration\/standalone.xml|sed 's,.*port=\"([0-9]*).*,1,'`; echo; echo \"  ** Accessing IndexAgent URL of '${i}' (${port})\"; curl -k -D - https:\/\/localhost:${port}\/IndexAgent; done\n\n  ** Accessing IndexAgent URL of 'DctmServer_Indexagent_DocBase1' (9202)\nHTTP\/1.1 302 Moved Temporarily\nServer: Apache-Coyote\/1.1\nLocation: https:\/\/localhost:9202\/IndexAgent\/\nTransfer-Encoding: chunked\nDate: Sat, 22 Jul 2017 11:36:57 GMT\n\n\n  ** Accessing IndexAgent URL of 'DctmServer_Indexagent_DocBase2' (9222)\nHTTP\/1.1 302 Moved Temporarily\nServer: Apache-Coyote\/1.1\nLocation: https:\/\/localhost:9222\/IndexAgent\/\nTransfer-Encoding: chunked\nDate: Sat, 22 Jul 2017 11:36:57 GMT\n\n\n  ** Accessing IndexAgent URL of 'DctmServer_Indexagent_DocBase3' (9242)\nHTTP\/1.1 302 Moved Temporarily\nServer: Apache-Coyote\/1.1\nLocation: https:\/\/localhost:9242\/IndexAgent\/\nTransfer-Encoding: chunked\nDate: Sat, 22 Jul 2017 11:36:58 GMT\n[dmadmin@content_server_01 ~]$<\/pre>\n<p>&nbsp;<\/p>\n<p>For the Dsearch, the proper answer is a HTTP 259 return code while for the IndexAgent, I didn&#8217;t put an ending &#8220;\/&#8221; in the URL so that we don&#8217;t have the full page of the IA loaded but only some header. Therefore HTTP 302 Moved Temporarily is the proper return code there.<\/p>\n<p>&nbsp;<\/p>\n<p>Please note that for the &#8220;sed&#8221; commands above, I deliberately used &#8220;&lt;[sk][se][ly]&#8221; even if for all JBoss 7.1.1 instances, the SSL configuration will always start with &#8220;&lt;ssl &#8220;. The reason for that is to make the steps compatible with WidlFly 9.0.1 too (xPlore 1.6). There are a few differences between JBoss 7.1.1 and WildFly 9.0.1 and one of them is that the JKS password is now on a line starting with &#8220;&lt;keystore &#8221; so that&#8217;s why :).<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Just like for the JBoss Admin password (here), this blog will be for both Content Servers and Full Text Servers. I will provide commands below to change the passwords of the Java KeyStore for the Java Method Server (JMS) and Full Text Servers (Dsearch\/IndexAgent). Again, JKS aren&#8217;t only used in the scope of Documentum so [&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,1147],"type_dbi":[],"class_list":["post-10388","post","type-post","status-publish","format-standard","hentry","category-enterprise-content-management","tag-change-password","tag-documentum","tag-jks"],"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 - 6 - CS\/FT - JKS - 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-6-csft-jks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - Change password - 6 - CS\/FT - JKS\" \/>\n<meta property=\"og:description\" content=\"Just like for the JBoss Admin password (here), this blog will be for both Content Servers and Full Text Servers. I will provide commands below to change the passwords of the Java KeyStore for the Java Method Server (JMS) and Full Text Servers (Dsearch\/IndexAgent). Again, JKS aren&#8217;t only used in the scope of Documentum so [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-29T07:29:33+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=\"9 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-6-csft-jks\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-6-csft-jks\\\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; Change password &#8211; 6 &#8211; CS\\\/FT &#8211; JKS\",\"datePublished\":\"2017-07-29T07:29:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-6-csft-jks\\\/\"},\"wordCount\":703,\"commentCount\":0,\"keywords\":[\"Change Password\",\"Documentum\",\"JKS\"],\"articleSection\":[\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-6-csft-jks\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-6-csft-jks\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-6-csft-jks\\\/\",\"name\":\"Documentum - Change password - 6 - CS\\\/FT - JKS - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-07-29T07:29:33+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-6-csft-jks\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-6-csft-jks\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-change-password-6-csft-jks\\\/#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; 6 &#8211; CS\\\/FT &#8211; JKS\"}]},{\"@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 - 6 - CS\/FT - JKS - 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-6-csft-jks\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - Change password - 6 - CS\/FT - JKS","og_description":"Just like for the JBoss Admin password (here), this blog will be for both Content Servers and Full Text Servers. I will provide commands below to change the passwords of the Java KeyStore for the Java Method Server (JMS) and Full Text Servers (Dsearch\/IndexAgent). Again, JKS aren&#8217;t only used in the scope of Documentum so [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/","og_site_name":"dbi Blog","article_published_time":"2017-07-29T07:29:33+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; Change password &#8211; 6 &#8211; CS\/FT &#8211; JKS","datePublished":"2017-07-29T07:29:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/"},"wordCount":703,"commentCount":0,"keywords":["Change Password","Documentum","JKS"],"articleSection":["Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/","name":"Documentum - Change password - 6 - CS\/FT - JKS - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-07-29T07:29:33+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-change-password-6-csft-jks\/#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; 6 &#8211; CS\/FT &#8211; JKS"}]},{"@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\/10388","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=10388"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10388\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10388"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10388"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10388"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}