BUG #15459: no connection to the server

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #15459: no connection to the server
Дата
Msg-id 15459-fb1c298d2650618a@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #15459: no connection to the server  (Jeff Janes <jeff.janes@gmail.com>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15459
Logged by:          medivhJay
Email address:      jay.medivh@gmail.com
PostgreSQL version: 9.6.8
Operating system:   debian
Description:

Hello 

I used php7.1 + PDO connect to postgresql

when I use fork , like this 

<?php
$pid = pcntl_fork();
            if ( $pid === 1 ) {
                TaskManager::log('error');
            } elseif ( $pid ) {
                pcntl_wait($status);
            } else {
                try {
                    call_user_func_array($func, $argv);
                } catch ( \Exception $e ) {
                    TaskManager::log($e);
                }
                exit(0);
            }


PDO throw an exception

like this
[2018-10-26 13:12:02] PDOException: SQLSTATE[HY000]: General error: 7 no
connection to the server in

if I don't use pcntl_fork , nothing 

I don't know how to fix it , I need your help

Thank you!


В списке pgsql-bugs по дате отправления:

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: Re: BUG #15448: server process (PID 22656) was terminated byexception 0xC0000005
Следующее
От: Fabien COELHO
Дата:
Сообщение: Re: BUG #15458: pg_typeof inconsistency on negative integer constantlimits