summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammad Usama2018-08-16 10:47:56 +0000
committerMuhammad Usama2018-08-16 10:47:56 +0000
commitbdd096fafaf1f081e97d0a39e833037e623bfa62 (patch)
treeb83a5bc758e9904c16a46ca9cf4c162f732908a7
parent539ca526e635fdd5a563074c48abeef918371b4b (diff)
Documentation for allow_clear_text_frontend_auth config variableSCRAM_AUTH
-rw-r--r--doc/src/sgml/connection-settings.sgml32
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/src/sgml/connection-settings.sgml b/doc/src/sgml/connection-settings.sgml
index 5bc156a36..c3bc63cad 100644
--- a/doc/src/sgml/connection-settings.sgml
+++ b/doc/src/sgml/connection-settings.sgml
@@ -256,6 +256,38 @@
</listitem>
</varlistentry>
+ <varlistentry id="guc-allow-clear-text-frontend-auth" xreflabel="allow_clear_text_frontend_auth">
+ <term><varname>allow_clear_text_frontend_auth</varname> (<type>boolean</type>)
+ <indexterm>
+ <primary><varname>allow_clear_text_frontend_auth</varname> configuration parameter</primary>
+ </indexterm>
+ </term>
+ <listitem>
+ <para>
+ If <productname>PostgreSQL</productname> backend servers require
+ <literal>md5</literal> or <literal> SCRAM</literal> authentication for some
+ user's authentication but the password for that user is not present in the
+ <filename>"pool_passwd"</filename> file, then enabling
+ <literal>allow_clear_text_frontend_auth</literal> will allow the
+ <productname>Pgpool-II</productname> to use clear-text-password
+ authentication with frontend clients to get the password in palin text form
+ from the client and use it for backend authentication.
+ </para>
+ <para>
+ Default is <literal>false</literal>
+ </para>
+ <para>
+ This parameter can be changed by reloading
+ the <productname>Pgpool-II</productname> configurations.
+ </para>
+ <note>
+ <para>
+ <literal>allow_clear_text_frontend_auth</literal> only works when <xref linkend="guc-enable-pool-hba"> is not enabled
+ </para>
+ </note>
+ </listitem>
+ </varlistentry>
+
<varlistentry id="guc-authentication-timeout" xreflabel="authentication_timeout">
<term><varname>authentication_timeout</varname> (<type>integer</type>)
<indexterm>