{"id":8811,"date":"2016-10-18T07:00:22","date_gmt":"2016-10-18T05:00:22","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/"},"modified":"2016-10-18T07:00:22","modified_gmt":"2016-10-18T05:00:22","slug":"documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/","title":{"rendered":"Documentum story &#8211; Change the location of the Xhive Database for the DSearch (xPlore)"},"content":{"rendered":"<p>When using xPlore with Documentum, you will need to setup a DSearch which will be used to perform the searches and this DSearch uses in the background an Xhive Database. This is a native XML Database that persists XML DOMs and provide access to them using XPath and XQuery. In this blog, I will share the steps needed to change the location of the Xhive Database used by the DSearch. You usually don&#8217;t want to move this XML Database everyday but it might be useful as a one-time action. In this customer case, one of the DSearch in a Sandbox\/Dev environment has been installed using a wrong path for the Xhive Database (not following our installation conventions) and therefore we had to correct that just to keep the alignment between all environments and to avoid a complete uninstall\/reinstall of the IndexAgents + DSearch.<\/p>\n<p>&nbsp;<\/p>\n<p>In the steps below, I will suppose that xPlore has been installed under &#8220;\/app\/xPlore&#8221; and that the Xhive Database has been created under &#8220;\/app\/xPlore\/data&#8221;. This is the default value and then when installing an IndexAgent, it will create, under the data folder, a sub-folder with a name equal to the DSearch Domain&#8217;s name (usually the name of the docbase\/repository). In this blog I will show you how to move this Xhive Database to &#8220;\/app\/xPlore\/test-data&#8221; without having to reinstall everything. This means that the Xhive Database will NOT be deleted\/recreated from scratch (this is also possible) and therefore you will NOT have to perform a full reindex which would have taken a looong time.<\/p>\n<p>&nbsp;<\/p>\n<p>So let&#8217;s start with stopping all components first:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[xplore@xplore_server_01 ~]$ sh -c \"\/app\/xPlore\/jboss7.1.1\/server\/stopIndexagent.sh\"\n[xplore@xplore_server_01 ~]$ sh -c \"\/app\/xPlore\/jboss7.1.1\/server\/stopPrimaryDsearch.sh\"<\/pre>\n<p>&nbsp;<\/p>\n<p>Once this is done, we need to backup the data and config files, just in case&#8230;<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[xplore@xplore_server_01 ~]$ current_date=$(date \"+%Y%m%d\")\n[xplore@xplore_server_01 ~]$ cp -R \/app\/xPlore\/data\/ \/app\/xPlore\/data_bck_$current_date\n[xplore@xplore_server_01 ~]$ cp -R \/app\/xPlore\/config\/ \/app\/xPlore\/config_bck_$current_date\n[xplore@xplore_server_01 ~]$ mv \/app\/xPlore\/data\/ \/app\/xPlore\/test-data\/\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Ok now everything in the background is prepared and we can start the actual steps to move the Xhive Database. The first step is to change the data location in the files stored in the config folder. There is actually two files that need to be updated: indexserverconfig.xml and XhiveDatabase.bootstrap. In the first file, you need to update the &#8220;storage-location&#8221; path that defines where the data are kept and in the second file you need to update all paths pointing to the Database files. Here are some simple commands to replace the old path with the new path and check that it has been done properly:<\/p>\n<pre class=\"brush: xml; gutter: true; first-line: 1\">[xplore@xplore_server_01 ~]$ sed -i \"s,\/app\/xPlore\/data,\/app\/xPlore\/test-data,\" \/app\/xPlore\/config\/indexserverconfig.xml\n[xplore@xplore_server_01 ~]$ sed -i \"s,\/app\/xPlore\/data,\/app\/xPlore\/test-data,\" \/app\/xPlore\/config\/XhiveDatabase.bootstrap\n[xplore@xplore_server_01 ~]$ \n[xplore@xplore_server_01 ~]$ grep -A2 \"&lt;storage-locations&gt;\" \/app\/xPlore\/config\/indexserverconfig.xml\n    &lt;storage-locations&gt;\n        &lt;storage-location path=\"\/app\/xPlore\/test-data\" quota_in_MB=\"10\" status=\"not_full\" name=\"default\"\/&gt;\n    &lt;\/storage-locations&gt;\n[xplore@xplore_server_01 ~]$ \n[xplore@xplore_server_01 ~]$ grep \"\/app\/xPlore\/test-data\" \/app\/xPlore\/config\/XhiveDatabase.bootstrap | grep 'id=\"[0-4]\"'\n        &lt;file path=\"\/app\/xPlore\/test-data\/xhivedb-default-0.XhiveDatabase.DB\" id=\"0\"\/&gt;\n        &lt;file path=\"\/app\/xPlore\/test-data\/SystemData\/xhivedb-SystemData-0.XhiveDatabase.DB\" id=\"2\"\/&gt;\n        &lt;file path=\"\/app\/xPlore\/test-data\/SystemData\/MetricsDB\/xhivedb-SystemData#MetricsDB-0.XhiveDatabase.DB\" id=\"3\"\/&gt;\n        &lt;file path=\"\/app\/xPlore\/test-data\/SystemData\/MetricsDB\/PrimaryDsearch\/xhivedb-SystemData#MetricsDB#PrimaryDsearch-0.XhiveDatabase.DB\" id=\"4\"\/&gt;\n        &lt;file path=\"\/app\/xPlore\/test-data\/xhivedb-temporary-0.XhiveDatabase.DB\" id=\"1\"\/&gt;<\/pre>\n<p>&nbsp;<\/p>\n<p>The next step is to announce the new location of the data folder\u00a0to the DSearch so it can create future Xhive Databases at the right location and this is done inside the file indexserver-bootstrap.properties. After the update, this file should look like the following:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [7,13,19]\">[xplore@xplore_server_01 ~]$ cat \/app\/xPlore\/jboss7.1.1\/server\/DctmServer_PrimaryDsearch\/deployments\/dsearch.war\/WEB-INF\/classes\/indexserver-bootstrap.properties\n# (c) 1994-2009, EMC Corporation. All Rights Reserved.\n#Wed May 20 10:40:49 PDT 2009\n#Note: Do not change the values of the properties in this file except xhive-pagesize and force-restart-xdb.\nnode-name=PrimaryDsearch\nconfiguration-service-class=com.emc.documentum.core.fulltext.indexserver.core.config.impl.xmlfile.IndexServerConfig\nindexserver.config.file=\/app\/xPlore\/config\/indexserverconfig.xml\nxhive-database-name=xhivedb\nsuperuser-name=superuser\nsuperuser-password=****************************************************\nadminuser-name=Administrator\nadminuser-password=****************************************************\nxhive-bootstrapfile-name=\/app\/xPlore\/config\/XhiveDatabase.bootstrap\nxhive-connection-string=xhive:\/\/xplore_server_01:9330\nxhive-pagesize=4096\n# xhive-cache-pages=40960\nisPrimary = true\nlicensekey=**************************************************************\nxhive-data-directory=\/app\/xPlore\/test-data\nxhive-log-directory=<\/pre>\n<p>&nbsp;<\/p>\n<p>In this file:<\/p>\n<ul>\n<li>indexserver.config.file =&gt; defines the location of the indexserverconfig.xml file that must be used to recreate the DSearch Xhive Database.<\/li>\n<li>xhive-bootstrapfile-name =&gt; defines the location and name of the Xhive bootstrap file that will be generated during bootstrap and will be used to create the empty DSearch Xhive Database.<\/li>\n<li>xhive-data-directory =&gt; defines the path of the data folder\u00a0that will be used by the Xhive bootstrap file. This will therefore be the future location of the DSearch Xhive Database.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>As you probably understood, to change the data folder, you just have to adjust the value of the parameter &#8220;xhive-data-directory&#8221; to point to the new location: \/app\/xPlore\/test-data.<\/p>\n<p>&nbsp;<\/p>\n<p>When this is done, the third step\u00a0is to change the Lucene temp path:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [2]\">[xplore@xplore_server_01 ~]$ cat \/app\/xPlore\/jboss7.1.1\/server\/DctmServer_PrimaryDsearch\/deployments\/dsearch.war\/WEB-INF\/classes\/xdb.properties\nxdb.lucene.temp.path=\/app\/xPlore\/test-data\/temp<\/pre>\n<p>&nbsp;<\/p>\n<p>In this file,\u00a0xdb.lucene.temp.path defines the path for temporary uncommitted indexes. Therefore it will just be used for temporary indexes but it is still a good practice to change this location since it&#8217;s also talking about the data of the DSearch and it helps to keep everything consistent.<\/p>\n<p>&nbsp;<\/p>\n<p>Then the next step is to clean the cache and restart the DSearch. You can use your custom start\/stop script if you have one or use something like this:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[xplore@xplore_server_01 ~]$ rm -rf \/app\/xPlore\/jboss7.1.1\/server\/DctmServer_*\/tmp\/work\/*\n[xplore@xplore_server_01 ~]$ sh -c \"cd \/app\/xPlore\/jboss7.1.1\/server;nohup .\/startPrimaryDsearch.sh &amp; sleep 5;mv nohup.out nohup-PrimaryDsearch.out\"<\/pre>\n<p>&nbsp;<\/p>\n<p>Once done, just verify in the log file generated by the start command (for me:\u00a0\/app\/xPlore\/jboss7.1.1\/server\/nohup-PrimaryDsearch.out) that the DSearch has been started successfully. If that&#8217;s true, then you can also start the IndexAgent:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[xplore@xplore_server_01 ~]$ sh -c \"cd \/app\/xPlore\/jboss7.1.1\/server;nohup .\/startIndexagent.sh &amp; sleep 5;mv nohup.out nohup-Indexagent.out\"<\/pre>\n<p>&nbsp;<\/p>\n<p>And here we are, the Xhive Database is now located under the &#8220;test-data&#8221; folder!<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>Additional note: As said at the beginning of this blog, it is also possible to recreate an empty Xhive Database and change its location at the same time. Doing a recreation of am empty DB will result in the same thing as the steps above BUT you will have to perform a full reindexing which will take a lot of time if this isn&#8217;t a new installation (the more documents are indexed, the more time it will take)&#8230; To perform this operation, the steps are mostly the same and are summarized below:<\/p>\n<ol>\n<li>Backup the data and config folders<\/li>\n<li>Remove all files inside the config folder except the indexserverconfig.xml<\/li>\n<li>Create a new (empty) data folder with a different name like &#8220;test-data&#8221; or &#8220;new-data&#8221; or&#8230;<\/li>\n<li>Update the file\u00a0indexserver-bootstrap.properties with the reference to the new path<\/li>\n<li>Update the file xdb.properties with the reference to the new path<\/li>\n<li>Clean the cache and restart the DSearch+IndexAgents<\/li>\n<\/ol>\n<p>Basically, the steps are exactly the same except that\u00a0you don&#8217;t need to update the files indexserverconfig.xml and XhiveDatabase.bootstrap. The first one is normally updated by the DSearch automatically and the second file will be recreated from scratch using the right data path thanks to the update of the file indexserver-bootstrap.properties.<\/p>\n<p>&nbsp;<\/p>\n<p>Have fun \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When using xPlore with Documentum, you will need to setup a DSearch which will be used to perform the searches and this DSearch uses in the background an Xhive Database. This is a native XML Database that persists XML DOMs and provide access to them using XPath and XQuery. In this blog, I will share [&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":[129,912,834,474],"type_dbi":[],"class_list":["post-8811","post","type-post","status-publish","format-standard","hentry","category-enterprise-content-management","tag-documentum","tag-dsearch","tag-xhive","tag-xplore"],"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 story - Change the location of the Xhive Database for the DSearch (xPlore) - 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-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum story - Change the location of the Xhive Database for the DSearch (xPlore)\" \/>\n<meta property=\"og:description\" content=\"When using xPlore with Documentum, you will need to setup a DSearch which will be used to perform the searches and this DSearch uses in the background an Xhive Database. This is a native XML Database that persists XML DOMs and provide access to them using XPath and XQuery. In this blog, I will share [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-18T05:00:22+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-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum story &#8211; Change the location of the Xhive Database for the DSearch (xPlore)\",\"datePublished\":\"2016-10-18T05:00:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/\"},\"wordCount\":950,\"commentCount\":0,\"keywords\":[\"Documentum\",\"Dsearch\",\"xhive\",\"xPlore\"],\"articleSection\":[\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/\",\"name\":\"Documentum story - Change the location of the Xhive Database for the DSearch (xPlore) - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2016-10-18T05:00:22+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Documentum story &#8211; Change the location of the Xhive Database for the DSearch (xPlore)\"}]},{\"@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 story - Change the location of the Xhive Database for the DSearch (xPlore) - 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-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/","og_locale":"en_US","og_type":"article","og_title":"Documentum story - Change the location of the Xhive Database for the DSearch (xPlore)","og_description":"When using xPlore with Documentum, you will need to setup a DSearch which will be used to perform the searches and this DSearch uses in the background an Xhive Database. This is a native XML Database that persists XML DOMs and provide access to them using XPath and XQuery. In this blog, I will share [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/","og_site_name":"dbi Blog","article_published_time":"2016-10-18T05:00:22+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-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum story &#8211; Change the location of the Xhive Database for the DSearch (xPlore)","datePublished":"2016-10-18T05:00:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/"},"wordCount":950,"commentCount":0,"keywords":["Documentum","Dsearch","xhive","xPlore"],"articleSection":["Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/","name":"Documentum story - Change the location of the Xhive Database for the DSearch (xPlore) - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2016-10-18T05:00:22+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-story-change-the-location-of-the-xhive-database-for-the-dsearch-xplore\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Documentum story &#8211; Change the location of the Xhive Database for the DSearch (xPlore)"}]},{"@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\/8811","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=8811"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/8811\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=8811"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=8811"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=8811"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=8811"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}