<?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 Removing Failover Candidate status from a Qlik Sense Rim Node in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Removing-Failover-Candidate-status-from-a-Qlik-Sense-Rim-Node/ta-p/1711472</link>
    <description>&lt;P&gt;Qlik Sense Enterprise on Windows provides the ability to set a &lt;STRONG&gt;Central Node Failover&lt;/STRONG&gt;. See&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Deploy_QSEoW/Failover.htm" target="_blank" rel="noopener"&gt;Configuring failover for central node resiliency&lt;/A&gt;&amp;nbsp;for details.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This article explains details the possible methods on how to change the&amp;nbsp;&lt;STRONG&gt;Failover Candidate&amp;nbsp;&lt;/STRONG&gt;option.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Content:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="none" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Removing a Failover Candidate using the Qlik Repository API&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;BLOCKQUOTE class="quote"&gt;This is the recommended method.&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's possible to toggle the Failover Candidate setting using the API. This ensures that no settings are lost. See &lt;A href="https://help.qlik.com/en-US/sense-admin/November2023/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Deploy_QSEoW/Failover.htm#:~:text=see%20Ports%20.-,Manually%20migrating%20the%20central%20node,-You%20cannot%20use" target="_blank" rel="noopener"&gt;Manually migrating the central node&lt;/A&gt;. For reference and additional instructions, see&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/November2023/APIs/RepositoryServiceAPI/index.html?page=1444" target="_blank" rel="noopener"&gt;put /servernodeconfiguration/{id}&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/ta-p/1716660" target="_blank" rel="noopener"&gt;Qlik Sense QRS API using Xrfkey header in PowerShell&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;$hdrs = @{}
$hdrs.Add("X-Qlik-xrfkey","12345678qwertyui")
$hdrs.Add("X-Qlik-User","UserDirectory=DOMAIN;UserId=Administrator")
$cert = Get-ChildItem -Path "Cert:\CurrentUser\My" | Where {$_.Subject -like '*QlikClient*'}
$url = "https://qlikserver1.domain.local:4242/qrs/servernodeconfiguration/&lt;STRONG&gt;5acededb-89a2-46f4-b39b-3ff21b4984a5&lt;/STRONG&gt;?xrfkey=12345678qwertyui"
$body = '{
  &lt;STRONG&gt;"failoverCandidate" :false,&lt;/STRONG&gt;
  "modifiedDate" : "2024-02-14T05:12:29.536Z"
}'
Invoke-RestMethod -Uri $url -Method Put -Headers $hdrs -Certificate $cert -ContentType "application/json" -Body $body&lt;/PRE&gt;
&lt;P&gt;In this code sample, &lt;FONT face="courier new,courier" size="2"&gt;5acededb-89a2-46f4-b39b-3ff21b4984a5&lt;/FONT&gt; is your node ID. To locate the ID:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open the &lt;STRONG&gt;Qlik Sense Enterprise Management Console &lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Navigate to your &lt;STRONG&gt;Qlik Sense Node&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Enable the&amp;nbsp;&lt;STRONG&gt;ID&amp;nbsp;&lt;/STRONG&gt;column for view and copy the revealed&amp;nbsp;value&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="reveal node ID.png" style="width: 555px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159610i3A84D427B5A161F5/image-dimensions/555x391?v=v2" width="555" height="391" role="button" title="reveal node ID.png" alt="reveal node ID.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Removing a Failover Candidate using the Qlik Sense Enterprise Management Console&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;This method will delete the removed node.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open the &lt;STRONG&gt;Qlik Sense Enterprise Management Console&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Navigate to&amp;nbsp;&lt;STRONG&gt;Nodes&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Delete&amp;nbsp;&lt;/STRONG&gt;the node you wish to discard (&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/delete-node.htm" target="_blank" rel="noopener"&gt;Deleting nodes&lt;/A&gt;)
&lt;BLOCKQUOTE class="quote"&gt;All settings related to this node will be deleted, such as Engine settings, Proxies, and Schedulers.&lt;/BLOCKQUOTE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Add&amp;nbsp;&lt;/STRONG&gt;the node again (&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/create-node.htm" target="_blank" rel="noopener"&gt;Creating a node&lt;/A&gt;)&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;STRONG&gt;Restart&lt;/STRONG&gt; Qlik services on the node&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Removing a Failover Candidate in the Qlik Sense Repository Database&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;BLOCKQUOTE class="quote"&gt;&lt;STRONG&gt;Warning:&lt;/STRONG&gt;Qlik cannot support direct queries and access to the underlying product's database hosted by PostgreSQL. If any issues arise for which direct queries are deemed responsible, Qlik Support will reserve the right to request that a previous working backup is restored to the system in order to bring back full operation or resolve any isolated issue(s).&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;You can toggle the Failover Candidate option in the database under using the &lt;FONT color="#339966"&gt;&lt;STRONG&gt;ServiceNodeConfiguration&lt;/STRONG&gt; &lt;/FONT&gt;table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;pgAdmin&lt;/STRONG&gt; &lt;/FONT&gt;is required for this method. See &lt;A href="https://community.qlik.com/t5/Official-Support-Articles/How-to-connect-to-the-Qlik-Sense-Enterprise-on-Windows-or-Qlik/ta-p/1710699" target="_blank" rel="noopener"&gt;How to connect to the Qlik Sense Enterprise on Windows or Qlik NPrinting PostgreSQL database&lt;/A&gt;.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Stop all Qlik Sense services &lt;STRONG&gt;&lt;EM&gt;except&lt;/EM&gt; &lt;/STRONG&gt;the &lt;STRONG&gt;Qlik Sense Repository Database&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Once you've connected to the database, navigate to the table &lt;STRONG&gt;ServiceNodeConfiguration&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Right-click and select "&lt;STRONG&gt;View/Edit Data&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;All Rows&lt;/STRONG&gt;"&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="view and edit data in servicenodeconfiguration table.png" style="width: 498px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159612iEC008B1631547125/image-dimensions/498x596?v=v2" width="498" height="596" role="button" title="view and edit data in servicenodeconfiguration table.png" alt="view and edit data in servicenodeconfiguration table.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Scroll to the end of the table, and double-click the &lt;STRONG&gt;FailoverCandidate boolean&lt;/STRONG&gt; value&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Edit that value, setting it to&amp;nbsp;&lt;STRONG&gt;false&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="set failovercandidate boolean value to false.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159613i573E2141A918EC2B/image-size/large?v=v2&amp;amp;px=999" role="button" title="set failovercandidate boolean value to false.png" alt="set failovercandidate boolean value to false.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Click&amp;nbsp;&lt;STRONG&gt;Save&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="save settings in table.png" style="width: 417px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159614iDB92BA0063F3CBC5/image-dimensions/417x148?v=v2" width="417" height="148" role="button" title="save settings in table.png" alt="save settings in table.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Feb 2024 09:51:21 GMT</pubDate>
    <dc:creator>Sonja_Bauernfeind</dc:creator>
    <dc:date>2024-02-13T09:51:21Z</dc:date>
    <item>
      <title>Removing Failover Candidate status from a Qlik Sense Rim Node</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Removing-Failover-Candidate-status-from-a-Qlik-Sense-Rim-Node/ta-p/1711472</link>
      <description>&lt;P&gt;Qlik Sense Enterprise on Windows provides the ability to set a &lt;STRONG&gt;Central Node Failover&lt;/STRONG&gt;. See&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Deploy_QSEoW/Failover.htm" target="_blank" rel="noopener"&gt;Configuring failover for central node resiliency&lt;/A&gt;&amp;nbsp;for details.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This article explains details the possible methods on how to change the&amp;nbsp;&lt;STRONG&gt;Failover Candidate&amp;nbsp;&lt;/STRONG&gt;option.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Content:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="none" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Removing a Failover Candidate using the Qlik Repository API&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;BLOCKQUOTE class="quote"&gt;This is the recommended method.&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's possible to toggle the Failover Candidate setting using the API. This ensures that no settings are lost. See &lt;A href="https://help.qlik.com/en-US/sense-admin/November2023/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Deploy_QSEoW/Failover.htm#:~:text=see%20Ports%20.-,Manually%20migrating%20the%20central%20node,-You%20cannot%20use" target="_blank" rel="noopener"&gt;Manually migrating the central node&lt;/A&gt;. For reference and additional instructions, see&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/November2023/APIs/RepositoryServiceAPI/index.html?page=1444" target="_blank" rel="noopener"&gt;put /servernodeconfiguration/{id}&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/ta-p/1716660" target="_blank" rel="noopener"&gt;Qlik Sense QRS API using Xrfkey header in PowerShell&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;$hdrs = @{}
$hdrs.Add("X-Qlik-xrfkey","12345678qwertyui")
$hdrs.Add("X-Qlik-User","UserDirectory=DOMAIN;UserId=Administrator")
$cert = Get-ChildItem -Path "Cert:\CurrentUser\My" | Where {$_.Subject -like '*QlikClient*'}
$url = "https://qlikserver1.domain.local:4242/qrs/servernodeconfiguration/&lt;STRONG&gt;5acededb-89a2-46f4-b39b-3ff21b4984a5&lt;/STRONG&gt;?xrfkey=12345678qwertyui"
$body = '{
  &lt;STRONG&gt;"failoverCandidate" :false,&lt;/STRONG&gt;
  "modifiedDate" : "2024-02-14T05:12:29.536Z"
}'
Invoke-RestMethod -Uri $url -Method Put -Headers $hdrs -Certificate $cert -ContentType "application/json" -Body $body&lt;/PRE&gt;
&lt;P&gt;In this code sample, &lt;FONT face="courier new,courier" size="2"&gt;5acededb-89a2-46f4-b39b-3ff21b4984a5&lt;/FONT&gt; is your node ID. To locate the ID:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open the &lt;STRONG&gt;Qlik Sense Enterprise Management Console &lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Navigate to your &lt;STRONG&gt;Qlik Sense Node&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Enable the&amp;nbsp;&lt;STRONG&gt;ID&amp;nbsp;&lt;/STRONG&gt;column for view and copy the revealed&amp;nbsp;value&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="reveal node ID.png" style="width: 555px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159610i3A84D427B5A161F5/image-dimensions/555x391?v=v2" width="555" height="391" role="button" title="reveal node ID.png" alt="reveal node ID.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Removing a Failover Candidate using the Qlik Sense Enterprise Management Console&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;This method will delete the removed node.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open the &lt;STRONG&gt;Qlik Sense Enterprise Management Console&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Navigate to&amp;nbsp;&lt;STRONG&gt;Nodes&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Delete&amp;nbsp;&lt;/STRONG&gt;the node you wish to discard (&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/delete-node.htm" target="_blank" rel="noopener"&gt;Deleting nodes&lt;/A&gt;)
&lt;BLOCKQUOTE class="quote"&gt;All settings related to this node will be deleted, such as Engine settings, Proxies, and Schedulers.&lt;/BLOCKQUOTE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Add&amp;nbsp;&lt;/STRONG&gt;the node again (&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/create-node.htm" target="_blank" rel="noopener"&gt;Creating a node&lt;/A&gt;)&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;STRONG&gt;Restart&lt;/STRONG&gt; Qlik services on the node&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Removing a Failover Candidate in the Qlik Sense Repository Database&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;BLOCKQUOTE class="quote"&gt;&lt;STRONG&gt;Warning:&lt;/STRONG&gt;Qlik cannot support direct queries and access to the underlying product's database hosted by PostgreSQL. If any issues arise for which direct queries are deemed responsible, Qlik Support will reserve the right to request that a previous working backup is restored to the system in order to bring back full operation or resolve any isolated issue(s).&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;You can toggle the Failover Candidate option in the database under using the &lt;FONT color="#339966"&gt;&lt;STRONG&gt;ServiceNodeConfiguration&lt;/STRONG&gt; &lt;/FONT&gt;table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;pgAdmin&lt;/STRONG&gt; &lt;/FONT&gt;is required for this method. See &lt;A href="https://community.qlik.com/t5/Official-Support-Articles/How-to-connect-to-the-Qlik-Sense-Enterprise-on-Windows-or-Qlik/ta-p/1710699" target="_blank" rel="noopener"&gt;How to connect to the Qlik Sense Enterprise on Windows or Qlik NPrinting PostgreSQL database&lt;/A&gt;.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Stop all Qlik Sense services &lt;STRONG&gt;&lt;EM&gt;except&lt;/EM&gt; &lt;/STRONG&gt;the &lt;STRONG&gt;Qlik Sense Repository Database&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Once you've connected to the database, navigate to the table &lt;STRONG&gt;ServiceNodeConfiguration&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Right-click and select "&lt;STRONG&gt;View/Edit Data&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;All Rows&lt;/STRONG&gt;"&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="view and edit data in servicenodeconfiguration table.png" style="width: 498px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159612iEC008B1631547125/image-dimensions/498x596?v=v2" width="498" height="596" role="button" title="view and edit data in servicenodeconfiguration table.png" alt="view and edit data in servicenodeconfiguration table.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Scroll to the end of the table, and double-click the &lt;STRONG&gt;FailoverCandidate boolean&lt;/STRONG&gt; value&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Edit that value, setting it to&amp;nbsp;&lt;STRONG&gt;false&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="set failovercandidate boolean value to false.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159613i573E2141A918EC2B/image-size/large?v=v2&amp;amp;px=999" role="button" title="set failovercandidate boolean value to false.png" alt="set failovercandidate boolean value to false.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Click&amp;nbsp;&lt;STRONG&gt;Save&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="save settings in table.png" style="width: 417px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159614iDB92BA0063F3CBC5/image-dimensions/417x148?v=v2" width="417" height="148" role="button" title="save settings in table.png" alt="save settings in table.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 09:51:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Removing-Failover-Candidate-status-from-a-Qlik-Sense-Rim-Node/ta-p/1711472</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2024-02-13T09:51:21Z</dc:date>
    </item>
  </channel>
</rss>

