Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

QRS API: Update Service Cluster Folder Path

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
ToniKautto
Employee
Employee

QRS API: Update Service Cluster Folder Path

Last Update:

Feb 23, 2021 4:17:18 AM

Updated By:

Sonja_Bauernfeind

Created date:

Oct 20, 2020 3:12:37 AM

Description

Cluster settings folder paths for 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. 

QRS API

See QRS API Reference for more detail on Service Cluster REST APIs;

Qlik CLI Windows

This example utilizes the PowerShell module from https://github.com/ahaydon/Qlik-Cli-Windows to simplify the QRS API execution. 

Note, Qlik CLI Windows is not support by Qlik Support, and any issues or questions should be posted to the Open Source project at https://github.com/ahaydon/Qlik-Cli-Windows/issues 

 

$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

 

Environment

  • Qlik Sense Enterprise on Windows

 

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.

 

Tags (1)
Version history
Last update:
‎2021-02-23 04:17 AM
Updated by: