<div dir="ltr">Hi Tatsuo,<div><br></div><div>failover.log is totally blank. I have used following command.</div><div><br></div><div><div>failover_command = '/usr/local/etc/failover.sh 192.168.10.54 192.168.10.54 192.168.10.41 /var/log/pgpool'</div></div><div><br></div><div><br></div><div>Regards,</div><div>Giles.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 8 October 2015 at 07:15, Tatsuo Ishii <span dir="ltr"><<a href="mailto:ishii@postgresql.org" target="_blank">ishii@postgresql.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Giles,<br>
<br>
It would be helpful to take a log of failover command.<br>
<br>
For example,<br>
<span class=""><br>
#!/bin/bash -x<br>
FALLING_NODE=$1         # %d<br>
OLDPRIMARY_NODE=$2      # %P<br>
NEW_PRIMARY=$3          # %H<br>
PGDATA=$4               # %R<br>
<br>
</span>exec > /tmp/failover.log 2>&1 <--- add this<br>
<span class="im HOEnZb"><br>
if [ $FALLING_NODE = $OLDPRIMARY_NODE ]; then<br>
[snip]<br>
<br>
</span><div class="HOEnZb"><div class="h5">Best regards,<br>
--<br>
Tatsuo Ishii<br>
SRA OSS, Inc. Japan<br>
English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_en.php</a><br>
Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
<br>
> Dear Tatsuo,<br>
><br>
> I have tried the  failover_command in various ways as following:<br>
><br>
> 1. '/usr/local/etc/failover.sh %d %P "%H" %R'<br>
> 2. '/usr/local/etc/failover.sh %d %P "%H"  /var/log/pgpool'<br>
> 3. '/usr/local/etc/failover.sh 192.168.10.41 192.168.10.41 192.168.10.54<br>
> /var/log/pgpool'<br>
> 4. 'ssh <a href="mailto:postgres@192.168.10.54">postgres@192.168.10.54</a> touch /var/log/pgpool/trigger/trigger_file1'<br>
><br>
> Command 3 and 4 works if I execute them from command line. But none of<br>
> these works automatically when Primay Server is down.<br>
><br>
> Best Regards,<br>
> Giles.<br>
><br>
><br>
> On 6 October 2015 at 15:39, Giles Gomes <<a href="mailto:giles.gomes@retailephant.com">giles.gomes@retailephant.com</a>><br>
> wrote:<br>
><br>
>> Dear Tatsuo,<br>
>><br>
>> Thanks for your quick response. I have edited the failover_command as<br>
>> following:<br>
>><br>
>> '/usr/local/etc/failover.sh %d %P "%H" %R'<br>
>><br>
>> But still it is not working :(<br>
>><br>
>> Best regards,<br>
>> Giles.<br>
>><br>
>> On 6 October 2015 at 05:23, Tatsuo Ishii <<a href="mailto:ishii@postgresql.org">ishii@postgresql.org</a>> wrote:<br>
>><br>
>>> > Hi Tatsuo,<br>
>>> ><br>
>>> > Please help me to solve the following problems.<br>
>>> ><br>
>>> > *Problem:1*<br>
>>> > Replication is working properly after I added  'password=1234' at<br>
>>> > primary_conninfo<br>
>>> > parameter in recovery.conf, but Standby Server didn't started<br>
>>> automatically<br>
>>> > after clicking "Recovery" from pgpool. I have edited the path of PFCTL<br>
>>> > in pgpool_remote_start<br>
>>> > file, do I need to edit anything else there?<br>
>>> ><br>
>>> > *Problem:2*<br>
>>> > I have stopped the Primary Server, but autofailover didn't work. Here<br>
>>> are<br>
>>> > some logs from Standby Server when I had stopped the Primary Server.<br>
>>><br>
>>><br>
>>> You have: failover_command = '/usr/local/etc/failover.sh %d "%h" %p %D<br>
>>> %m %M "%H" %P' in pgpool.conf but your failover.sh does below. You are<br>
>>> comparing failing node id with failing hostname, which never succeeds.<br>
>>><br>
>>> #!/bin/bash -x<br>
>>> FALLING_NODE=$1         # %d<br>
>>> OLDPRIMARY_NODE=$2      # %P<br>
>>> NEW_PRIMARY=$3          # %H<br>
>>> PGDATA=$4               # %R<br>
>>><br>
>>> if [ $FALLING_NODE = $OLDPRIMARY_NODE ]; then<br>
>>> [snip]<br>
>>><br>
>>> > -----------------------------------------------------------------<br>
>>> > 9381 2015-10-05 11:47:01 UTC STATEMENT:  INSERT INTO rep_test VALUES<br>
>>> > ('Shumi');<br>
>>> > 9381 2015-10-05 11:47:32 UTC LOG:  statement: select * from rep_test;<br>
>>> > 9381 2015-10-05 11:48:04 UTC LOG:  statement: select * from rep_test;<br>
>>> > 9521 2015-10-05 11:49:28 UTC LOG:  statement: select * from t1;<br>
>>> > 9521 2015-10-05 11:49:42 UTC LOG:  statement: select * from t1;<br>
>>> > 9357 2015-10-05 11:53:22 UTC LOG:  replication terminated by primary<br>
>>> server<br>
>>> > 9357 2015-10-05 11:53:22 UTC DETAIL:  End of WAL reached on timeline 1<br>
>>> at<br>
>>> > 0/4D000090.<br>
>>> > 9357 2015-10-05 11:53:22 UTC FATAL:  could not send end-of-streaming<br>
>>> > message to primary: no COPY in progress<br>
>>> > 9356 2015-10-05 11:53:22 UTC LOG:  invalid record length at 0/4D000090<br>
>>> > 9536 2015-10-05 11:53:28 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9537 2015-10-05 11:53:29 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9538 2015-10-05 11:53:30 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9539 2015-10-05 11:53:31 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9540 2015-10-05 11:53:32 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9542 2015-10-05 11:53:32 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9543 2015-10-05 11:53:33 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9544 2015-10-05 11:53:34 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9545 2015-10-05 11:53:35 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9546 2015-10-05 11:53:36 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9547 2015-10-05 11:53:37 UTC FATAL:  could not connect to the primary<br>
>>> > server: could not connect to server: Connection refused<br>
>>> > Is the server running on host "192.168.10.54" and accepting<br>
>>> > TCP/IP connections on port 5432?<br>
>>> > 9548 2015-10-05 11:53:37 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
>>> > 9550 2015-10-05 11:53:42 UTC FATAL:  could not connect to the primary<br>
>>> > server: could not connect to server: Connection refused<br>
>>> > Is the server running on host "192.168.10.54" and accepting<br>
>>> > TCP/IP connections on port 5432?<br>
>>> ><br>
>>> ---------------------------------------------------------------------------------------------------------------------------------------------<br>
>>> ><br>
>>> > Please check the attachment.<br>
>>> ><br>
>>> > Best regards,<br>
>>> > Giles.<br>
>>> ><br>
>>> ><br>
>>> > On 4 October 2015 at 11:36, Giles Gomes <<a href="mailto:giles.gomes@retailephant.com">giles.gomes@retailephant.com</a>><br>
>>> > wrote:<br>
>>> ><br>
>>> >> Hi Tatsuo,<br>
>>> >><br>
>>> >> Thanks for your response. I have attached postgresql.conf of primary<br>
>>> and<br>
>>> >> recovery.conf of standby with this email.<br>
>>> >><br>
>>> >> Regards,<br>
>>> >> Giles.<br>
>>> >><br>
>>> >> On 3 October 2015 at 13:08, Tatsuo Ishii <<a href="mailto:ishii@postgresql.org">ishii@postgresql.org</a>> wrote:<br>
>>> >><br>
>>> >>> Seems streaming replication is not working.  Standby requests a WAL<br>
>>> >>> segment but primary does not have it. Can you show me postgresql.conf<br>
>>> >>> of primary and recovery.conf of standby?<br>
>>> >>><br>
>>> >>> Best regards,<br>
>>> >>> --<br>
>>> >>> Tatsuo Ishii<br>
>>> >>> SRA OSS, Inc. Japan<br>
>>> >>> English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_en.php</a><br>
>>> >>> Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
>>> >>><br>
>>> >>> > Hi Tatsuo,<br>
>>> >>> ><br>
>>> >>> > I was able to minimize some errors at master (primary) PostgreSQL's<br>
>>> >>> log. I<br>
>>> >>> > have attached the new log with this email.<br>
>>> >>> ><br>
>>> >>> > Best regards,<br>
>>> >>> > Giles.<br>
>>> >>> ><br>
>>> >>> ><br>
>>> >>> > On 30 September 2015 at 18:59, Giles Gomes <<br>
>>> >>> <a href="mailto:giles.gomes@retailephant.com">giles.gomes@retailephant.com</a>><br>
>>> >>> > wrote:<br>
>>> >>> ><br>
>>> >>> >> Hi Tatsuo,<br>
>>> >>> >><br>
>>> >>> >> The pgpool log, master (primary) PostgreSQL's log and basebackup,sh<br>
>>> >>> have<br>
>>> >>> >> been attached with this email.<br>
>>> >>> >><br>
>>> >>> >> Best regards,<br>
>>> >>> >> Giles.<br>
>>> >>> >><br>
>>> >>> >> On 28 September 2015 at 16:50, Giles Gomes <<br>
>>> >>> <a href="mailto:giles.gomes@retailephant.com">giles.gomes@retailephant.com</a>><br>
>>> >>> >> wrote:<br>
>>> >>> >><br>
>>> >>> >>> Hi Tatsuo,<br>
>>> >>> >>><br>
>>> >>> >>> The pgpool log, master (primary) PostgreSQL's log and<br>
>>> basebackup,sh<br>
>>> >>> have<br>
>>> >>> >>> been attached with this email.<br>
>>> >>> >>><br>
>>> >>> >>> Best regards,<br>
>>> >>> >>> Giles.<br>
>>> >>> >>><br>
>>> >>> >>> On 27 September 2015 at 11:06, Tatsuo Ishii <<a href="mailto:ishii@postgresql.org">ishii@postgresql.org</a><br>
>>> ><br>
>>> >>> wrote:<br>
>>> >>> >>><br>
>>> >>> >>>> pcp_recovery_node command failed for some reason.  Unfortunately<br>
>>> the<br>
>>> >>> >>>> error code emitted by pgpoolAdmin is not very helpful. pgpool<br>
>>> log and<br>
>>> >>> >>>> master (primary) PostgreSQL's log when the command ran will be<br>
>>> >>> >>>> more helpful.<br>
>>> >>> >>>><br>
>>> >>> >>>> Best regards,<br>
>>> >>> >>>> --<br>
>>> >>> >>>> Tatsuo Ishii<br>
>>> >>> >>>> SRA OSS, Inc. Japan<br>
>>> >>> >>>> English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_en.php</a><br>
>>> >>> >>>> Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
>>> >>> >>>><br>
>>> >>> >>>> > Hi, how are you??<br>
>>> >>> >>>> > A query, you could solve this problem you had ??<br>
>>> >>> >>>> > I have the same error connection error pgpooladmin<br>
>>> >>> >>>> ><br>
>>> >>> >>>> ><br>
>>> >>> >>>> > 2015-09-20 11:29 GMT-03:00 Giles Gomes <<br>
>>> >>> <a href="mailto:giles.gomes@retailephant.com">giles.gomes@retailephant.com</a>>:<br>
>>> >>> >>>> ><br>
>>> >>> >>>> >> Hello Tatsuo Ishii,<br>
>>> >>> >>>> >><br>
>>> >>> >>>> >> After enabling health check parameters 'postgres' is showing<br>
>>> up<br>
>>> >>> now.<br>
>>> >>> >>>> But<br>
>>> >>> >>>> >> when I click on Recovery an error is generating.<br>
>>> >>> >>>> >> Error Code: e1012, Error Message: pcp_recovery_node command<br>
>>> error<br>
>>> >>> >>>> occurred and<br>
>>> >>> >>>> >> 'Stop', 'Restart', 'Reload' and 'Remove' buttons are still<br>
>>> >>> disabled.<br>
>>> >>> >>>> >><br>
>>> >>> >>>> >> I have attached the screen shots and waiting for your help.<br>
>>> >>> >>>> >><br>
>>> >>> >>>> >> Best regards,<br>
>>> >>> >>>> >> Giles.<br>
>>> >>> >>>> >><br>
>>> >>> >>>> >><br>
>>> >>> >>>> >> On 17 September 2015 at 19:52, Giles Gomes <<br>
>>> >>> >>>> <a href="mailto:giles.gomes@retailephant.com">giles.gomes@retailephant.com</a>><br>
>>> >>> >>>> >> wrote:<br>
>>> >>> >>>> >><br>
>>> >>> >>>> >>> Hello Tatsuo Ishii,<br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >>> I was able to start the Standby Database and Successfully<br>
>>> >>> Installed<br>
>>> >>> >>>> >>> pgpoolAdmin. But 'postgres' is showing down and 'Stop',<br>
>>> >>> 'Restart',<br>
>>> >>> >>>> 'Reload'<br>
>>> >>> >>>> >>> and 'Remove' buttons are disabled.<br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >>> pgpool.log and the screen shot is attached with this email.<br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >>> --<br>
>>> >>> >>>> >>> Best regards,<br>
>>> >>> >>>> >>> Giles Cornelius Gomes<br>
>>> >>> >>>> >>> Database Administrator<br>
>>> >>> >>>> >>> Impel IT Solutions Ltd.<br>
>>> >>> >>>> >>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >>> On 16 September 2015 at 21:24, Giles Gomes <<br>
>>> >>> >>>> <a href="mailto:giles.gomes@retailephant.com">giles.gomes@retailephant.com</a>><br>
>>> >>> >>>> >>> wrote:<br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >>>> Hi Tatsuo,<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> Thanks for your response. install-functions.sh has worked<br>
>>> >>> properly<br>
>>> >>> >>>> >>>> after installing postgresql-server-dev-9.3.<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> I was also able to run basebackup.sh, although "mkdir:<br>
>>> cannot<br>
>>> >>> create<br>
>>> >>> >>>> >>>> directory ‘/var/lib/postgresql/9.3/main/pg_xlog’: File<br>
>>> exists"<br>
>>> >>> is<br>
>>> >>> >>>> showing<br>
>>> >>> >>>> >>>> while running this as following:<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>><br>
>>> >>><br>
>>> -------------------------------------------------------------------------------------------<br>
>>> >>> >>>> >>>> postgres@osspc17:~/9.3/main$ ./basebackup.sh<br>
>>> >>> >>>> >>>>  pg_start_backup<br>
>>> >>> >>>> >>>> -----------------<br>
>>> >>> >>>> >>>>  0/1C000028<br>
>>> >>> >>>> >>>> (1 row)<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> mkdir: cannot create directory<br>
>>> >>> >>>> ‘/var/lib/postgresql/9.3/main/pg_xlog’:<br>
>>> >>> >>>> >>>> File exists<br>
>>> >>> >>>> >>>> mytemp23915<br>
>>> >>> >>>> >>>><br>
>>> >>>  100%<br>
>>> >>> >>>> 153<br>
>>> >>> >>>> >>>> 0.2KB/s   00:00<br>
>>> >>> >>>> >>>> NOTICE:  pg_stop_backup complete, all required WAL segments<br>
>>> have<br>
>>> >>> >>>> been<br>
>>> >>> >>>> >>>> archived<br>
>>> >>> >>>> >>>>  pg_stop_backup<br>
>>> >>> >>>> >>>> ----------------<br>
>>> >>> >>>> >>>>  0/1C0000F0<br>
>>> >>> >>>> >>>> (1 row)<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>><br>
>>> >>><br>
>>> --------------------------------------------------------------------------------------------<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> After running this script I have restarted the standby<br>
>>> database<br>
>>> >>> as<br>
>>> >>> >>>> >>>> following:<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> $ service postgresql restart<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> After restarting the database I am unable to login to<br>
>>> database.<br>
>>> >>> >>>> >>>> following error is showing:<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>><br>
>>> >>><br>
>>> --------------------------------------------------------------------------<br>
>>> >>> >>>> >>>> postgres@osspc18:~$ psql<br>
>>> >>> >>>> >>>> psql: FATAL:  the database system is starting up<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>><br>
>>> >>><br>
>>> --------------------------------------------------------------------------<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> What should I do now?<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> Best regards,<br>
>>> >>> >>>> >>>> Giles.<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> On 16 September 2015 at 04:59, Tatsuo Ishii <<br>
>>> >>> <a href="mailto:ishii@postgresql.org">ishii@postgresql.org</a>><br>
>>> >>> >>>> >>>> wrote:<br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>>> > Hi Tatsuo,<br>
>>> >>> >>>> >>>>> ><br>
>>> >>> >>>> >>>>> > Thanks for your quick response. I was trying to configure<br>
>>> >>> >>>> replication<br>
>>> >>> >>>> >>>>> with<br>
>>> >>> >>>> >>>>> > pgpool II between three VM.<br>
>>> >>> >>>> >>>>> > 1. Pgpool Server. where pgpool-II-3.4.3 is installed .I<br>
>>> wish<br>
>>> >>> to<br>
>>> >>> >>>> >>>>> install<br>
>>> >>> >>>> >>>>> > Pgpool Admin here also.<br>
>>> >>> >>>> >>>>> > 2. Primary Server, where  PostgreSQL 9.3.9 is installed.<br>
>>> >>> >>>> >>>>> > 3. Standby Server, where  PostgreSQL 9.3.9 is installed.<br>
>>> >>> >>>> >>>>> ><br>
>>> >>> >>>> >>>>> > The main problem is I didn't get any complete document<br>
>>> where<br>
>>> >>> all<br>
>>> >>> >>>> the<br>
>>> >>> >>>> >>>>> > necessary steps are described. Last time I was following<br>
>>> the<br>
>>> >>> >>>> document<br>
>>> >>> >>>> >>>>> below.<br>
>>> >>> >>>> >>>>> ><br>
>>> >>> >>>> >>>>> ><br>
>>> >>> >>>><br>
>>> >>> <a href="http://www.pgpool.net/pgpool-web/contrib_docs/simple_sr_setting2_3.3/" rel="noreferrer" target="_blank">http://www.pgpool.net/pgpool-web/contrib_docs/simple_sr_setting2_3.3/</a><br>
>>> >>> >>>> >>>>> ><br>
>>> >>> >>>> >>>>> > Here they told to run a script named install-functions.sh<br>
>>> >>> >>>> >>>>> ><br>
>>> >>> >>>> >>>>> > But following errors are showing while running it.<br>
>>> >>> >>>> >>>>> ><br>
>>> >>> >>>> >>>>><br>
>>> >>> >>>><br>
>>> >>><br>
>>> --------------------------------------------------------------------------------------------------------------------<br>
>>> >>> >>>> >>>>> > postgres@osspc16:/home/vagrant$ ./install-functions.sh<br>
>>> >>> >>>> >>>>> > Makefile:19:<br>
>>> /usr/lib/postgresql/9.3/lib/pgxs/src/makefiles/<br>
>>> >>> >>>> <a href="http://pgxs.mk" rel="noreferrer" target="_blank">pgxs.mk</a>:<br>
>>> >>> >>>> >>>>> No<br>
>>> >>> >>>> >>>>> > such fil<br>
>>> >>> >>>> >>>>> >                      e or directory<br>
>>> >>> >>>> >>>>> > make: *** No rule to make target<br>
>>> >>> >>>> >>>>><br>
>>> >>> >>>> >>>>> Seems like a PostgreSQL RPM installation problem, rather<br>
>>> than a<br>
>>> >>> >>>> >>>>> pgpool-II installation problem. Have you installed<br>
>>> >>> postgresql-devel<br>
>>> >>> >>>> >>>>> package?<br>
>>> >>> >>>> >>>>><br>
>>> >>> >>>> >>>>> Best regards,<br>
>>> >>> >>>> >>>>> --<br>
>>> >>> >>>> >>>>> Tatsuo Ishii<br>
>>> >>> >>>> >>>>> SRA OSS, Inc. Japan<br>
>>> >>> >>>> >>>>> English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_en.php</a><br>
>>> >>> >>>> >>>>> Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
>>> >>> >>>> >>>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>>> --<br>
>>> >>> >>>> >>>> Best regards,<br>
>>> >>> >>>> >>>> Giles Cornelius Gomes<br>
>>> >>> >>>> >>>> Database Administrator<br>
>>> >>> >>>> >>>> Impel IT Solutions Ltd.<br>
>>> >>> >>>> >>>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>> >>> >>>> >>>><br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >>> --<br>
>>> >>> >>>> >>> Best regards,<br>
>>> >>> >>>> >>> Giles Cornelius Gomes<br>
>>> >>> >>>> >>> Database Administrator<br>
>>> >>> >>>> >>> Impel IT Solutions Ltd.<br>
>>> >>> >>>> >>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>> >>> >>>> >>><br>
>>> >>> >>>> >><br>
>>> >>> >>>> >><br>
>>> >>> >>>> >><br>
>>> >>> >>>> >> --<br>
>>> >>> >>>> >> Best regards,<br>
>>> >>> >>>> >> Giles Cornelius Gomes<br>
>>> >>> >>>> >> Database Administrator<br>
>>> >>> >>>> >> Impel IT Solutions Ltd.<br>
>>> >>> >>>> >> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>> >>> >>>> >><br>
>>> >>> >>>> >> _______________________________________________<br>
>>> >>> >>>> >> pgpool-general mailing list<br>
>>> >>> >>>> >> <a href="mailto:pgpool-general@pgpool.net">pgpool-general@pgpool.net</a><br>
>>> >>> >>>> >> <a href="http://www.pgpool.net/mailman/listinfo/pgpool-general" rel="noreferrer" target="_blank">http://www.pgpool.net/mailman/listinfo/pgpool-general</a><br>
>>> >>> >>>> >><br>
>>> >>> >>>> >><br>
>>> >>> >>>><br>
>>> >>> >>><br>
>>> >>> >>><br>
>>> >>> >>><br>
>>> >>> >>> --<br>
>>> >>> >>> Best regards,<br>
>>> >>> >>> Giles Cornelius Gomes<br>
>>> >>> >>> Database Administrator<br>
>>> >>> >>> Impel IT Solutions Ltd.<br>
>>> >>> >>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>> >>> >>><br>
>>> >>> >><br>
>>> >>> >><br>
>>> >>> >><br>
>>> >>> >> --<br>
>>> >>> >> Best regards,<br>
>>> >>> >> Giles Cornelius Gomes<br>
>>> >>> >> Database Administrator<br>
>>> >>> >> Impel IT Solutions Ltd.<br>
>>> >>> >> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>> >>> >><br>
>>> >>> ><br>
>>> >>> ><br>
>>> >>> ><br>
>>> >>> > --<br>
>>> >>> > Best regards,<br>
>>> >>> > Giles Cornelius Gomes<br>
>>> >>> > Database Administrator<br>
>>> >>> > Impel IT Solutions Ltd.<br>
>>> >>> > Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>> >>><br>
>>> >><br>
>>> >><br>
>>> >><br>
>>> >> --<br>
>>> >> Best regards,<br>
>>> >> Giles Cornelius Gomes<br>
>>> >> Database Administrator<br>
>>> >> Impel IT Solutions Ltd.<br>
>>> >> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>> >><br>
>>> ><br>
>>> ><br>
>>> ><br>
>>> > --<br>
>>> > Best regards,<br>
>>> > Giles Cornelius Gomes<br>
>>> > Database Administrator<br>
>>> > Impel IT Solutions Ltd.<br>
>>> > Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>>><br>
>><br>
>><br>
>><br>
>> --<br>
>> Best regards,<br>
>> Giles Cornelius Gomes<br>
>> Database Administrator<br>
>> Impel IT Solutions Ltd.<br>
>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
>><br>
><br>
><br>
><br>
> --<br>
> Best regards,<br>
> Giles Cornelius Gomes<br>
> Database Administrator<br>
> Impel IT Solutions Ltd.<br>
> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389">+88 01 714329389</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr">Best regards,<div>Giles Cornelius Gomes</div><div>Database Administrator</div><div>Impel IT Solutions Ltd.</div><div>Phone: +88 01 714329389 </div></div></div></div></div>
</div>