<?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 Qlik Sense Enterprise on Windows PostgreSQL: postgresql.conf and pg_hba.conf explained in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/ta-p/1713744</link>
    <description>&lt;P&gt;It is important to understand the options which PostgreSQL uses to allow connectivity. These principles are valid no matter whether you are using the Qlik Sense Repository Database service to host the database or using a standalone PostgreSQL instance. The two key files which PostgreSQL uses to define who can connect, how they connect, where they can connect from, and how many connections are allowed are:&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;For bundled PostgreSQL instances, the files are located in:&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;C:\ProgramData\Qlik\Sense\Repository\PostgreSQL\x.x&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;If you have unbundled PostgreSQL using the Qlik PostgreSQL installer (QPI), the default location is:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;C:\Program Files\PostgreSQL\xx\data&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;For any other standalone PostgreSQL instances, consulting with your database admin to locate the data directory.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: Any changes to these files will require a restart of the Qlik Sense Repository Database or PostgreSQL.&lt;BR /&gt;&lt;STRONG&gt;Note:&amp;nbsp;&lt;/STRONG&gt;Any lines prefixed with a # are commented out and not active.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;postgresql.conf&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;In the &lt;FONT face="courier new,courier"&gt;postgresql.conf&lt;/FONT&gt;, in a basic Qlik Sense configuration, there are two key configuration options which are important:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;listen_addresses&lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;This configuration defines which NICs PostgreSQL will listen on. For standalone PostgreSQL servers or multi-node Qlik Sense sites, the recommended setting is * (example below). This allows PostgreSQL to bind to any NICs presented to the server. Multiple comma-separated DNS entries may be added as well. (e.g.&amp;nbsp; &lt;FONT face="courier new,courier"&gt;listen_addresses = 'localhost,QlikServer2.domain.local'&lt;/FONT&gt; ) More advanced configurations are possible here but will not be covered in this guide.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;max_connections&lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;This configuration defines how many connections PostgreSQL will allow. &lt;SPAN&gt;&amp;nbsp;It is best to use a rule of thumb of about 110 connections per node +20.&amp;nbsp; For example, for 4 nodes set to 460. See&amp;nbsp;&lt;EM&gt;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Deploy_QSEoW/Installing-Qlik-Sense-multi-node.htm#anchor-1" target="_blank" rel="noopener"&gt;Installing Qlik Sense in a multi node&lt;/A&gt;&amp;nbsp;&lt;/EM&gt;for more details.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Where these lines are can vary but an expected single node Qlik Sense site would look like this:&lt;/P&gt;
&lt;PRE&gt;listen_addresses = '*'
max_connections = 100&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="PostgresSQL_listen_addresses.gif" style="width: 800px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/51631i6EF3CF98FED572DC/image-size/large?v=v2&amp;amp;px=999" role="button" title="PostgresSQL_listen_addresses.gif" alt="PostgresSQL_listen_addresses.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;pg_hba.conf&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;The pg_hba.conf file defines a variety of aspects:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;What IP addresses or ranges can connect to PostgreSQL and for what accounts&lt;/LI&gt;
&lt;LI&gt;What method of authentication those IP ranges / accounts can use&lt;/LI&gt;
&lt;LI&gt;For more details on configuration options for IP listeners, such as&amp;nbsp;&lt;STRONG&gt;samenet&lt;/STRONG&gt;, see&amp;nbsp;&lt;A href="https://www.postgresql.org/docs/9.6/auth-pg-hba-conf.html" target="_blank" rel="noopener"&gt;https://www.postgresql.org/docs/9.6/auth-pg-hba-conf.html&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE&gt;# TYPE  DATABASE        USER            ADDRESS                 METHOD

# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::/0                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#host    replication     postgres        127.0.0.1/32            md5
#host    replication     postgres        ::1/128                 md5
host	all	            all	            0.0.0.0/0	            md5&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;In this example pg_hba.conf file there two active lines. The first line specifies that all users can connect to all databases from the local loopback IP using MD5 authentication (host all all 127.0.0.1/32 md5). The second line specifies that all users can connect to all databases from any valid IPv4 address using MD5 authenication (host all all 0.0.0.0/0 md5)&lt;BR /&gt;&lt;BR /&gt;Please review &lt;A href="https://help.qlik.com/en-US/sense/April2018/Subsystems/PlanningQlikSenseDeployments/Content/Deployment/Installing-configuring-postgresql.htm" target="_blank" rel="noopener"&gt;our help&lt;/A&gt; for references to more sophisticated configurations where specific IP addresses or IP address ranges are covered.&lt;BR /&gt;&lt;BR /&gt;To recap, when ensuring connectivity in a Qlik Sense Shared Persistence environment, especially a multi-node site, the core configurations which are needed are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;PostgreSQL configured to listen to an external IP address (&lt;STRONG&gt;listen_address&lt;/STRONG&gt; in &lt;STRONG&gt;postgresql.conf&lt;/STRONG&gt;)&lt;/LI&gt;
&lt;LI&gt;Sufficient connections available for Qlik Sense (&lt;STRONG&gt;max_connections&lt;/STRONG&gt; in &lt;STRONG&gt;postgresql.conf&lt;/STRONG&gt;)&lt;/LI&gt;
&lt;LI&gt;Explicit allowing the IP address which is used to connect (&lt;STRONG&gt;pg_hba.conf&lt;/STRONG&gt;)&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Tue, 10 Mar 2026 06:23:30 GMT</pubDate>
    <dc:creator>Andre_Sostizzo</dc:creator>
    <dc:date>2026-03-10T06:23:30Z</dc:date>
    <item>
      <title>Qlik Sense Enterprise on Windows PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/ta-p/1713744</link>
      <description>&lt;P&gt;It is important to understand the options which PostgreSQL uses to allow connectivity. These principles are valid no matter whether you are using the Qlik Sense Repository Database service to host the database or using a standalone PostgreSQL instance. The two key files which PostgreSQL uses to define who can connect, how they connect, where they can connect from, and how many connections are allowed are:&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;For bundled PostgreSQL instances, the files are located in:&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;C:\ProgramData\Qlik\Sense\Repository\PostgreSQL\x.x&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;If you have unbundled PostgreSQL using the Qlik PostgreSQL installer (QPI), the default location is:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;C:\Program Files\PostgreSQL\xx\data&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;For any other standalone PostgreSQL instances, consulting with your database admin to locate the data directory.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: Any changes to these files will require a restart of the Qlik Sense Repository Database or PostgreSQL.&lt;BR /&gt;&lt;STRONG&gt;Note:&amp;nbsp;&lt;/STRONG&gt;Any lines prefixed with a # are commented out and not active.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;postgresql.conf&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;In the &lt;FONT face="courier new,courier"&gt;postgresql.conf&lt;/FONT&gt;, in a basic Qlik Sense configuration, there are two key configuration options which are important:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;listen_addresses&lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;This configuration defines which NICs PostgreSQL will listen on. For standalone PostgreSQL servers or multi-node Qlik Sense sites, the recommended setting is * (example below). This allows PostgreSQL to bind to any NICs presented to the server. Multiple comma-separated DNS entries may be added as well. (e.g.&amp;nbsp; &lt;FONT face="courier new,courier"&gt;listen_addresses = 'localhost,QlikServer2.domain.local'&lt;/FONT&gt; ) More advanced configurations are possible here but will not be covered in this guide.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;max_connections&lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;This configuration defines how many connections PostgreSQL will allow. &lt;SPAN&gt;&amp;nbsp;It is best to use a rule of thumb of about 110 connections per node +20.&amp;nbsp; For example, for 4 nodes set to 460. See&amp;nbsp;&lt;EM&gt;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Deploy_QSEoW/Installing-Qlik-Sense-multi-node.htm#anchor-1" target="_blank" rel="noopener"&gt;Installing Qlik Sense in a multi node&lt;/A&gt;&amp;nbsp;&lt;/EM&gt;for more details.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Where these lines are can vary but an expected single node Qlik Sense site would look like this:&lt;/P&gt;
&lt;PRE&gt;listen_addresses = '*'
max_connections = 100&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="PostgresSQL_listen_addresses.gif" style="width: 800px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/51631i6EF3CF98FED572DC/image-size/large?v=v2&amp;amp;px=999" role="button" title="PostgresSQL_listen_addresses.gif" alt="PostgresSQL_listen_addresses.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;pg_hba.conf&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;The pg_hba.conf file defines a variety of aspects:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;What IP addresses or ranges can connect to PostgreSQL and for what accounts&lt;/LI&gt;
&lt;LI&gt;What method of authentication those IP ranges / accounts can use&lt;/LI&gt;
&lt;LI&gt;For more details on configuration options for IP listeners, such as&amp;nbsp;&lt;STRONG&gt;samenet&lt;/STRONG&gt;, see&amp;nbsp;&lt;A href="https://www.postgresql.org/docs/9.6/auth-pg-hba-conf.html" target="_blank" rel="noopener"&gt;https://www.postgresql.org/docs/9.6/auth-pg-hba-conf.html&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE&gt;# TYPE  DATABASE        USER            ADDRESS                 METHOD

# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::/0                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#host    replication     postgres        127.0.0.1/32            md5
#host    replication     postgres        ::1/128                 md5
host	all	            all	            0.0.0.0/0	            md5&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;In this example pg_hba.conf file there two active lines. The first line specifies that all users can connect to all databases from the local loopback IP using MD5 authentication (host all all 127.0.0.1/32 md5). The second line specifies that all users can connect to all databases from any valid IPv4 address using MD5 authenication (host all all 0.0.0.0/0 md5)&lt;BR /&gt;&lt;BR /&gt;Please review &lt;A href="https://help.qlik.com/en-US/sense/April2018/Subsystems/PlanningQlikSenseDeployments/Content/Deployment/Installing-configuring-postgresql.htm" target="_blank" rel="noopener"&gt;our help&lt;/A&gt; for references to more sophisticated configurations where specific IP addresses or IP address ranges are covered.&lt;BR /&gt;&lt;BR /&gt;To recap, when ensuring connectivity in a Qlik Sense Shared Persistence environment, especially a multi-node site, the core configurations which are needed are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;PostgreSQL configured to listen to an external IP address (&lt;STRONG&gt;listen_address&lt;/STRONG&gt; in &lt;STRONG&gt;postgresql.conf&lt;/STRONG&gt;)&lt;/LI&gt;
&lt;LI&gt;Sufficient connections available for Qlik Sense (&lt;STRONG&gt;max_connections&lt;/STRONG&gt; in &lt;STRONG&gt;postgresql.conf&lt;/STRONG&gt;)&lt;/LI&gt;
&lt;LI&gt;Explicit allowing the IP address which is used to connect (&lt;STRONG&gt;pg_hba.conf&lt;/STRONG&gt;)&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 10 Mar 2026 06:23:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/ta-p/1713744</guid>
      <dc:creator>Andre_Sostizzo</dc:creator>
      <dc:date>2026-03-10T06:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1889114#M5473</link>
      <description>&lt;P&gt;What about if we have a Qlik Sense Enterprise Core with 1000 concurrent users at peak. Should I set max_connection to 1000 ?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Feb 2022 10:26:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1889114#M5473</guid>
      <dc:creator>mattias</dc:creator>
      <dc:date>2022-02-04T10:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1892963#M5569</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/60710"&gt;@mattias&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The max connections setting is influenced by the number of nodes, rather than the number of concurrent users.&lt;/P&gt;
&lt;P&gt;So:&amp;nbsp;&lt;SPAN&gt;It is best to use a rule of thumb of about 110 connections per node +20.&amp;nbsp; For example, for 1 node would be 110. 4 nodes set to 460, and so on.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 09:52:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1892963#M5569</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2022-02-15T09:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1942084#M6642</link>
      <description>&lt;P&gt;We just had a case von 2022-Febr (which uses PostGre 12.5&amp;nbsp; I think)&lt;BR /&gt;All services were running, but hub/qmc was not working (after a windows reboot), &lt;BR /&gt;and windows event log showed:&lt;BR /&gt;2022-06-09 11:44:03.130 CEST [6072] FATAL:&amp;nbsp; no pg_hba.conf entry for Host »fe80::329f:ae53:d2bd:8ead%5«, ...&lt;BR /&gt;&lt;BR /&gt;Solution was: &lt;BR /&gt;Stop Services. &lt;BR /&gt;Edit the &lt;FONT face="courier new,courier"&gt;pg_hba.conf&lt;/FONT&gt; , &lt;BR /&gt;It already has a line setting permissions for a different MAC-address. &lt;BR /&gt;So we copied that line and inserted the MAC-address from the error.&lt;BR /&gt;Restarted the services and everything was working again. &lt;BR /&gt;&lt;BR /&gt;My best guess is that during installation the MAC-Address is put into the conf. &lt;BR /&gt;But if (as MIGHT have happened in this case?!) the IT changes something in the virtual network adapter of the VM, the address changes after next reboot, and Qlik Sense is no longer working, and you need to do this fix as specified. &lt;/P&gt;</description>
      <pubDate>Fri, 10 Jun 2022 09:50:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1942084#M6642</guid>
      <dc:creator>john_oll</dc:creator>
      <dc:date>2022-06-10T09:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1942090#M6643</link>
      <description>&lt;P&gt;edit: it was a single node environment&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jun 2022 10:04:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1942090#M6643</guid>
      <dc:creator>john_oll</dc:creator>
      <dc:date>2022-06-10T10:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1965173#M7027</link>
      <description>&lt;P&gt;edit for above post: it is obviously an IPv6 address, not a MAC address.&lt;BR /&gt;&lt;BR /&gt;followup: &lt;BR /&gt;for that customer, the IPv6 address changed again, which required redoing that fix.&lt;BR /&gt;&lt;BR /&gt;Which means there is something wrong. Probably only for the PostGre 12.5 Version?!? &lt;BR /&gt;Again: &lt;/P&gt;
&lt;H2 class="message-subject"&gt;&lt;SPAN class="lia-message-read"&gt;no pg_hba.conf entry for host &lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;BR /&gt;The IPv6 address of the (single node) server is hard coded (during install?) into that one file.&lt;BR /&gt;The IPv6 address might change. (not sure how often, not sure if custom specific causes make this more frequent)&lt;BR /&gt;IF it changed, the (single node) server is no longer working, &lt;BR /&gt;because that one line with the correct hard coded address is required for the (single node) server to keep running. &lt;BR /&gt;Does not sound like it is intended, so probably a BUG!? &lt;BR /&gt;Looking at the other lines in the file, I do not understand why this one line with the hard coded address is the only thing that determines if it works or not. &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 11:48:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/1965173#M7027</guid>
      <dc:creator>john_oll</dc:creator>
      <dc:date>2022-08-05T11:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2005101#M7783</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/41310"&gt;@john_oll&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Last week we ran into the same issue you ran into, however not for one customer but for four customers at the same time. All our customers updated and rebooted their server (see my latest post for more details).&lt;/P&gt;
&lt;P&gt;When editing the pg_hba.conf file and allowing the IPv6 logged in the error from the event viewer we are unable to restart the Qlik Sense services. We updated Qlik Sense entirely and this did fix the issue.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2022 08:14:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2005101#M7783</guid>
      <dc:creator>Mika_2000</dc:creator>
      <dc:date>2022-11-16T08:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2121865#M10258</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/39663"&gt;@Andre_Sostizzo&lt;/a&gt; , &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have Qlik Sense Feb 2022 in a multinode configuration (Central node and Node1)&lt;/P&gt;
&lt;P&gt;Last week I tried to upgrade to Feb 2023 and Postgre 12.5 using the manual upgrade and I had a problem upgrading the Node1 (the central node was fine)&lt;/P&gt;
&lt;P&gt;I can see a SAMPLE file called pg_hba.conf and postgresql.conf in this path: (in both server)&lt;/P&gt;
&lt;P&gt;E:\Qlik\Sense\Repository\PostgreSQL\9.6\share&lt;/P&gt;
&lt;P&gt;Should I edit this file? in both servers?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2023 08:43:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2121865#M10258</guid>
      <dc:creator>pasgalbarra</dc:creator>
      <dc:date>2023-09-25T08:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122340#M10271</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158064"&gt;@pasgalbarra&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This article explains what these files are for and what they are used for by Qlik Sense. As we do not know what problems you ran into, it is impossible for us to recommend whether or not they should be modified and how.&lt;/P&gt;
&lt;P&gt;If you were upgrading PostgreSQL manually (rather than with the QPI), then I assume you were following this article:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/How-to-manually-upgrade-the-bundled-Qlik-Sense-PostgreSQL/ta-p/1820358" target="_blank" rel="noopener"&gt;How to manually upgrade the bundled Qlik Sense PostgreSQL version to 12.5 version&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;What issue did you encounter?&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 08:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122340#M10271</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-09-26T08:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122360#M10273</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is not clear to me is, why these files are located in a different folder than the article (share), and why these files are called .sample&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pasgalbarra_0-1695718587062.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/117081i495553BAAD0766CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pasgalbarra_0-1695718587062.png" alt="pasgalbarra_0-1695718587062.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Is this correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 08:58:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122360#M10273</guid>
      <dc:creator>pasgalbarra</dc:creator>
      <dc:date>2023-09-26T08:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122418#M10274</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158064"&gt;@pasgalbarra&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These are not the files or the folder location you should look for. As they are also in the &lt;STRONG&gt;9.6&lt;/STRONG&gt; folder and you mentioned you had updated to 12.x, this folder would not be used. It being installed in a different location (shared) would also indicate that this was customised or renamed at some point.&lt;/P&gt;
&lt;P&gt;Without knowing what steps you followed to upgrade in detail, as well as where it failed and what errors you received, it is difficult to give you advice on this. But these files (.samples) are, from what I understand, "blank" samples Postgres drops in before the database is in use. Qlik Sense would, in this case, not be looking at them.&lt;/P&gt;
&lt;P&gt;Reviewing the timestamps on them also reveals that they were created and last modified in 2022.&lt;/P&gt;
&lt;P&gt;The files you are looking for are going to be in the location documented in this article (if everything was installed with default settings).&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 10:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122418#M10274</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-09-26T10:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122439#M10275</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We rollback to Feb 2022, and this is the current configuration since May 2022.&lt;/P&gt;
&lt;P&gt;Qlik Sense is installed in the E: drive, the files are in C?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pasgalbarra_0-1695727811409.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/117099i29614ADA2B6C663F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pasgalbarra_0-1695727811409.png" alt="pasgalbarra_0-1695727811409.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding the error I had, I think was caused by the format of the service account (lower case), I will give a second try next weekend&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 11:31:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122439#M10275</guid>
      <dc:creator>pasgalbarra</dc:creator>
      <dc:date>2023-09-26T11:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122454#M10276</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158064"&gt;@pasgalbarra&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For bundled PostgreSQL instances (which you have), the files are by default located in:&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;C:\&lt;/STRONG&gt;ProgramData\Qlik\Sense\Repository\PostgreSQL\x.x&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Unbundled or otherwise custom installs can have a different location, as you can choose the data directory.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 12:26:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2122454#M10276</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-09-26T12:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2492134#M14926</link>
      <description>&lt;P&gt;Hi Qlikkers,&lt;/P&gt;
&lt;P&gt;My customer has a QSEoW multinode y checking the Log Monitor app, I found many errors like "Unexpected error in ExistsByID", checking this post:&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-US"&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/Some-nodes-shown-as-offline-in-a-Qlik-Sense-Enterprise-on/ta-p/1710488" target="_blank"&gt;https://community.qlik.com/t5/Official-Support-Articles/Some-nodes-shown-as-offline-in-a-Qlik-Sense-Enterprise-on/ta-p/1710488&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and this post about the&amp;nbsp;Postgresql.conf and PG_HBA.Conf files we did the changes:&lt;/P&gt;
&lt;P&gt;Postgresql.conf&lt;/P&gt;
&lt;P&gt;listen_addresses = '*'&lt;/P&gt;
&lt;P&gt;Max_connections = 790&lt;/P&gt;
&lt;P&gt;The customer has 1 central node and 6 RIM nodes, according to the rule 7 nodes * 110 + 20&lt;/P&gt;
&lt;P&gt;The PGA_HBA.CONF file is:&lt;/P&gt;
&lt;P&gt;host all all fe80:: .................. /128 md5&lt;/P&gt;
&lt;P&gt;host all all 10.171......../32 md5&lt;/P&gt;
&lt;P&gt;host all all 0.0.0.0/0 md5&lt;/P&gt;
&lt;P&gt;How we can avoid the error if we change the Postgre config file? Are there any other component that can produce this error?&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Gabriel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 20:22:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2492134#M14926</guid>
      <dc:creator>Gabriel_Araya</dc:creator>
      <dc:date>2024-11-11T20:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: PostgreSQL: postgresql.conf and pg_hba.conf explained</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2492651#M14943</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/95446"&gt;@Gabriel_Araya&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend posting your requirement in the Qlik Sense &lt;A href="https://community.qlik.com/t5/deployment-management/bd-p/qlik-sense-deployment" target="_blank" rel="noopener"&gt;Deployment and Management&lt;/A&gt; forum, where our active product experts and your knowledgeable Qlik peers are better able to assist you.&lt;/P&gt;
&lt;P&gt;All the best,&amp;nbsp;&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 07:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-PostgreSQL-postgresql-conf-and/tac-p/2492651#M14943</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2024-11-14T07:38:12Z</dc:date>
    </item>
  </channel>
</rss>

