You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<para>On the server side, add the <xref linkend="listen-rdma-addresses"> GUC variable to the <filename>postgresql.conf</filename> configuration file to specify TCP/IP address(es) on which the server is to listen for new <acronym>RDMA</acronym> connections via <literal>rsocket</literal> from client applications. For example:
You can specify a comma-separated list of host names and/or numeric IP addresses. If set to <literal>*</>, this variable will enable <acronym>RDMA</acronym> connections via <literal>rsocket</literal> to all the available IP interfaces.
2541
2541
</para>
@@ -2593,20 +2593,20 @@ export WITH_RSOCKET=true
2593
2593
<para>Once the setup is complete, launch <application>pg_dump</application> as usual. For example:
<title>Using <acronym>RDMA</acronym> for Master-Slave Replication</title>
2603
-
<para>To enable master-slave replication over <acronym>RDMA</acronym> connections via <literal>rsocket</literal>, you need to configure master and slave nodes as described below.</para>
2603
+
<para>To enable master-slave replication over <acronym>RDMA</acronym> connections via <literal>rsocket</literal>, you need to configure master and slave nodes. For example, to allow client connections to the server 172.0.3.21 from 172.0.3.0/24 addresses on behalf of the <literal>postgres</> user, follow the steps below:</para>
2604
2604
2605
2605
<para><emphasis role="strong">To set up the master node for replication over <acronym>RDMA</acronym> connections via <literal>rsocket</literal>:</emphasis>
2606
2606
</para>
2607
2607
<orderedlist>
2608
2608
<listitem>
2609
-
<para>Edit the <filename>pg_hba.conf</filename> file to allow client connections and replication at the specified IP addresses. For example:
2609
+
<para>Edit the <filename>pg_hba.conf</filename> file to allow client connections and replication from the specified IP addresses:
2610
2610
<programlisting>
2611
2611
host all postgres 172.0.3.0/24 md5
2612
2612
host replication postgres 172.0.3.0/24 md5
@@ -2622,7 +2622,7 @@ wal_level = hot_standby
2622
2622
hot_standby = on
2623
2623
max_wal_senders = 1
2624
2624
</programlisting>
2625
-
The <varname>listen_rdma_addresses</varname> specifies the TCP/IP address(es) on which the server is to listen for new <acronym>RDMA</acronym> connections via <literal>rsocket</literal>.
2625
+
The <varname>listen_rdma_addresses</varname> variable specifies the TCP/IP address(es) on which the server is to listen for new <acronym>RDMA</acronym> connections via <literal>rsocket</literal>.
2626
2626
</para>
2627
2627
</listitem>
2628
2628
<listitem>
@@ -2659,7 +2659,7 @@ All the data appears on the slave node under the specified <replaceable>datadir<
2659
2659
</para>
2660
2660
</listitem>
2661
2661
<listitem>
2662
-
<para>Make sure the <replaceable>datadir</>/recovery.conf contains the <literal>with_rsocket</literal> parameter.
2662
+
<para>Make sure the <filename><replaceable>datadir</>/recovery.conf</filename> contains the <literal>with_rsocket</literal> parameter.
0 commit comments