<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article QRS API: Update Service Cluster Folder Path in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-Update-Service-Cluster-Folder-Path/ta-p/1753955</link>
    <description>&lt;DIV class="lia-message-template-desc-zone"&gt;
&lt;H2&gt;Description&lt;/H2&gt;
&lt;P&gt;Cluster settings folder paths for&amp;nbsp;Qlik Sense Enterprise on Windows can be altered through Qlik Sense Repository Service (QRS) API. This can be useful for example during Qlik Sense site migration or for migrating back-end file servers.&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://help.qlik.com/en-US/sense-admin/September2020/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/service-cluster.htm" target="_self"&gt;Qlik Sense for Administrators: Service Cluster&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;QRS API&lt;/H3&gt;
&lt;P&gt;See&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/September2020/Subsystems/RepositoryServiceAPI/Content/Sense_RepositoryServiceAPI/RepositoryServiceAPI-Reference-Redirect.htm" target="_self"&gt;QRS API Reference&lt;/A&gt;&amp;nbsp;for more detail on Service Cluster REST APIs;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/September2020/APIs/RepositoryServiceAPI/index.html?page=541" target="_self"&gt;GET /servicecluster&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/September2020/APIs/RepositoryServiceAPI/index.html?page=491" target="_self"&gt;PUT /servicecluster/{id}&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;DIV class="lia-message-template-desc-sub-header-zone"&gt;
&lt;H3&gt;Qlik CLI Windows&lt;/H3&gt;
&lt;P&gt;This example utilizes the PowerShell module from&amp;nbsp;&lt;A href="https://github.com/ahaydon/Qlik-Cli-Windows" target="_blank" rel="noopener"&gt;https://github.com/ahaydon/Qlik-Cli-Windows&lt;/A&gt;&amp;nbsp;to simplify the QRS API execution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note, Qlik CLI Windows is not support by Qlik Support, and any issues or questions should be posted to the Open Source project at&amp;nbsp;&lt;A href="https://github.com/ahaydon/Qlik-Cli-Windows/issues" target="_blank" rel="noopener"&gt;https://github.com/ahaydon/Qlik-Cli-Windows/issues&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$QlikServiceCluster = Get-QlikServiceCluster
$NewRoot= "\\Server\NewShare\"
$paramUpdateQlikServiceCluster = @{
    id = $QlikServiceCluster.id
    rootFolder = $NewRoot
    appFolder = "$($NewRoot)\Apps"
    staticContentRootFolder = "$($NewRoot)\StaticContent"
    connector32RootFolder = "$($NewRoot)\CustomData"
    connector64RootFolder = "$($NewRoot)\CustomData"
    archivedLogsRootFolder = "$($NewRoot)\ArchivedLogs"
}
Update-QlikServiceCluster @paramUpdateQlikServiceCluster&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: inherit; font-family: inherit; font-size: 24px;"&gt;Environment&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV class="lia-message-template-env-zone"&gt;
&lt;UL&gt;
&lt;LI&gt;Qlik Sense Enterprise on Windows&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV class="lia-message-template-info"&gt;
&lt;P style="font-style: italic;"&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 23 Feb 2021 09:17:18 GMT</pubDate>
    <dc:creator>ToniKautto</dc:creator>
    <dc:date>2021-02-23T09:17:18Z</dc:date>
    <item>
      <title>QRS API: Update Service Cluster Folder Path</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-Update-Service-Cluster-Folder-Path/ta-p/1753955</link>
      <description>&lt;DIV class="lia-message-template-desc-zone"&gt;
&lt;H2&gt;Description&lt;/H2&gt;
&lt;P&gt;Cluster settings folder paths for&amp;nbsp;Qlik Sense Enterprise on Windows can be altered through Qlik Sense Repository Service (QRS) API. This can be useful for example during Qlik Sense site migration or for migrating back-end file servers.&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://help.qlik.com/en-US/sense-admin/September2020/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/service-cluster.htm" target="_self"&gt;Qlik Sense for Administrators: Service Cluster&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;QRS API&lt;/H3&gt;
&lt;P&gt;See&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/September2020/Subsystems/RepositoryServiceAPI/Content/Sense_RepositoryServiceAPI/RepositoryServiceAPI-Reference-Redirect.htm" target="_self"&gt;QRS API Reference&lt;/A&gt;&amp;nbsp;for more detail on Service Cluster REST APIs;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/September2020/APIs/RepositoryServiceAPI/index.html?page=541" target="_self"&gt;GET /servicecluster&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/September2020/APIs/RepositoryServiceAPI/index.html?page=491" target="_self"&gt;PUT /servicecluster/{id}&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;DIV class="lia-message-template-desc-sub-header-zone"&gt;
&lt;H3&gt;Qlik CLI Windows&lt;/H3&gt;
&lt;P&gt;This example utilizes the PowerShell module from&amp;nbsp;&lt;A href="https://github.com/ahaydon/Qlik-Cli-Windows" target="_blank" rel="noopener"&gt;https://github.com/ahaydon/Qlik-Cli-Windows&lt;/A&gt;&amp;nbsp;to simplify the QRS API execution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note, Qlik CLI Windows is not support by Qlik Support, and any issues or questions should be posted to the Open Source project at&amp;nbsp;&lt;A href="https://github.com/ahaydon/Qlik-Cli-Windows/issues" target="_blank" rel="noopener"&gt;https://github.com/ahaydon/Qlik-Cli-Windows/issues&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$QlikServiceCluster = Get-QlikServiceCluster
$NewRoot= "\\Server\NewShare\"
$paramUpdateQlikServiceCluster = @{
    id = $QlikServiceCluster.id
    rootFolder = $NewRoot
    appFolder = "$($NewRoot)\Apps"
    staticContentRootFolder = "$($NewRoot)\StaticContent"
    connector32RootFolder = "$($NewRoot)\CustomData"
    connector64RootFolder = "$($NewRoot)\CustomData"
    archivedLogsRootFolder = "$($NewRoot)\ArchivedLogs"
}
Update-QlikServiceCluster @paramUpdateQlikServiceCluster&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: inherit; font-family: inherit; font-size: 24px;"&gt;Environment&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV class="lia-message-template-env-zone"&gt;
&lt;UL&gt;
&lt;LI&gt;Qlik Sense Enterprise on Windows&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV class="lia-message-template-info"&gt;
&lt;P style="font-style: italic;"&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 23 Feb 2021 09:17:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-Update-Service-Cluster-Folder-Path/ta-p/1753955</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2021-02-23T09:17:18Z</dc:date>
    </item>
  </channel>
</rss>

