<div dir="ltr">Thanks a lot Bo, it really helps.<div>By default installing postgres will generate /usr/lib/systemd/system/postgresql-12.service as:</div><div><br></div><div>...</div><div>ExecStartPre=/usr/pgsql-12/bin/postgresql-12-check-db-dir ${PGDATA}<br>ExecStart=/usr/pgsql-12/bin/postmaster -D ${PGDATA}<br>ExecReload=/bin/kill -HUP $MAINPID<br></div><div>...</div><div><br></div><div>So maybe to start postgresql automatically I just need to change from</div><div>ExecStart=/usr/pgsql-12/bin/postmaster -D ${PGDATA}  <br></div><div>to</div><div>ExecStart=/usr/pgsql-12/bin/postgresql -D ${PGDATA}  <br></div><div><br></div><div>as <a href="http://saule1508.github.io/pgpool/">http://saule1508.github.io/pgpool/</a> described (in case we use the default data directory)</div><div><br></div><div>Then for pgpool we need to check and test, pick up a good number for search_primary_node_timeout.</div><div>After that in most cases if we just rebooted those 3 servers, postgresql & pgpool could start automatically.</div><div><br></div><div>Please correct me if I'm wrong.</div><div>Thanks a lot.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Aug 12, 2020 at 9:53 AM Bo Peng <<a href="mailto:pengbo@sraoss.co.jp">pengbo@sraoss.co.jp</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi,<br>
<br>
On Wed, 12 Aug 2020 00:28:54 +0800<br>
"J.L." <<a href="mailto:wantdrink@gmail.com" target="_blank">wantdrink@gmail.com</a>> wrote:<br>
<br>
> Hi Bo,<br>
> In fact the I only start pgpool service in all servers with<br>
> systemctl start pgpool<br>
> <br>
> And only start the postgres on the primary with<br>
> systemctl start postgresql-12<br>
> <br>
> The postgres service started on server 2 & 3 as replication is to execute<br>
> pcp_recovery_node command with specify the VIP as the host the same as the<br>
> official guidance:<br>
> 8.3.7.1. Set up PostgreSQL standby server<br>
> <br>
>     # pcp_recovery_node -h 192.168.137.150 -p 9898 -U pgpool -n 1<br>
>     Password:<br>
>     pcp_recovery_node -- Command Successful<br>
> <br>
>     # pcp_recovery_node -h 192.168.137.150 -p 9898 -U pgpool -n 2<br>
>     Password:<br>
>     pcp_recovery_node -- Command Successful<br>
> <br>
<br>
You are using "pcp_recovery_node" to create standby servers.<br>
Thank you for your explanation.<br>
<br>
I don't recommend automatic starting pgpool at boot.<br>
Pgpool will try to find backend servers at startup,<br>
If all the backend servers have not been started, <br>
pgpool may trigger failover and don't accept any <br>
new connections.<br>
<br>
Therefore, you need to make sure that at least one backend server is running<br>
before pgpool is started.<br>
<br>
If your backend server takes time to startup,<br>
the workaround is to set "search_primary_node_timeout" parameter a little longer.<br>
Default is 300 seconds.<br>
It means pgpool will keep try to search for the primary node for 300 seconds at startup.<br>
<br>
<a href="https://www.pgpool.net/docs/latest/en/html/runtime-config-failover.html#GUC-SEARCH-PRIMARY-NODE-TIMEOUT" rel="noreferrer" target="_blank">https://www.pgpool.net/docs/latest/en/html/runtime-config-failover.html#GUC-SEARCH-PRIMARY-NODE-TIMEOUT</a><br>
<br>
> The configuration of pgpool is nearly the same with<br>
> <a href="https://www.pgpool.net/docs/latest/en/html/example-cluster.html#EXAMPLE-CLUSTER-PRE-SETUP" rel="noreferrer" target="_blank">https://www.pgpool.net/docs/latest/en/html/example-cluster.html#EXAMPLE-CLUSTER-PRE-SETUP</a><br>
> <br>
> Thanks.<br>
> .<br>
> <br>
> On Tue, Aug 11, 2020 at 10:47 PM Bo Peng <<a href="mailto:pengbo@sraoss.co.jp" target="_blank">pengbo@sraoss.co.jp</a>> wrote:<br>
> <br>
> > Hi,<br>
> ><br>
> > On Sun, 9 Aug 2020 17:05:01 +0800<br>
> > "J.L." <<a href="mailto:wantdrink@gmail.com" target="_blank">wantdrink@gmail.com</a>> wrote:<br>
> ><br>
> > > Hi there,<br>
> > ><br>
> > > I've installed pgpool 4.1.2 and postgresql 12.3 with watchdog based on<br>
> > > <a href="https://www.pgpool.net/docs/latest/en/html/example-cluster.html" rel="noreferrer" target="_blank">https://www.pgpool.net/docs/latest/en/html/example-cluster.html</a>.<br>
> > > That is 3 machines with a VIP, pgpool service + watchdog service +<br>
> > > postgresql service running on each of them, 1 primary + 2 standby<br>
> > > postgresql.<br>
> > > The question is: is that possible to enable those services as auto<br>
> > started<br>
> > > even if I reboot all of them?<br>
> > ><br>
> > > I checked running services on them:<br>
> > ><br>
> > > [root@primary ~]# systemctl status postgresql-12<br>
> > > > postgresql-12.service - PostgreSQL 12 database server<br>
> > > >    Loaded: loaded (/usr/lib/systemd/system/postgresql-12.service;<br>
> > > > disabled; vendor preset: disabled)<br>
> > > >    Active: active (running) since Thu 2020-07-02 22:17:35 CDT; 1<br>
> > months 6<br>
> > > > days ago<br>
> > > ><br>
> > > > [root@secondary1 ~]# systemctl status postgresql-12<br>
> > > > postgresql-12.service - PostgreSQL 12 database server<br>
> > > >    Loaded: loaded (/usr/lib/systemd/system/postgresql-12.service;<br>
> > > > disabled; vendor preset: disabled)<br>
> > > >    Active: inactive (dead)<br>
> > > ><br>
> > > > [root@secondary2 ~]# systemctl status postgresql-12<br>
> > > > postgresql-12.service - PostgreSQL 12 database server<br>
> > > >    Loaded: loaded (/usr/lib/systemd/system/postgresql-12.service;<br>
> > > > disabled; vendor preset: disabled)<br>
> > > >    Active: inactive (dead)<br>
> > ><br>
> > ><br>
> > > So the postgresql service on secondary 1 & 2 is not started by postgresql<br>
> > > service, they are triggered by pgpool with command like:<br>
> > ><br>
> > > > /usr/pgsql-12/bin/postgres -D /var/lib/pgsql/12/data<br>
> ><br>
> > Sorry, I could not understand the configuration.<br>
> > May I ask how you configure pgpool to execute command above?<br>
> ><br>
> > > And on the primary the ps aux shows<br>
> > ><br>
> > > > /usr/pgsql-12/bin/postmaster -D /var/lib/pgsql/12/data/<br>
> > ><br>
> > ><br>
> > > Which means I can enable pgpool service on all 3 machines:<br>
> > ><br>
> > > > systemctl enable pgpool<br>
> > ><br>
> > ><br>
> > > But shouldn't do the same for postgresql service like systemctl enable<br>
> > > postgresql-12.<br>
> > > Also I'm not sure if enabling services to start automatically will lead<br>
> > to<br>
> > > any issue.<br>
> > ><br>
> > > Any suggestion or guidance about this is appreciated. I just want to make<br>
> > > the DB system recover even after rebooting.<br>
> > ><br>
> > > Thanks.<br>
> ><br>
> ><br>
> > --<br>
> > Bo Peng <<a href="mailto:pengbo@sraoss.co.jp" target="_blank">pengbo@sraoss.co.jp</a>><br>
> > SRA OSS, Inc. Japan<br>
> ><br>
<br>
<br>
-- <br>
Bo Peng <<a href="mailto:pengbo@sraoss.co.jp" target="_blank">pengbo@sraoss.co.jp</a>><br>
SRA OSS, Inc. Japan<br>
</blockquote></div>