Re: Query cancelled errors

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Query cancelled errors
Дата
Msg-id 26101.1063739369@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Query cancelled errors  (David Rickard <David.Rickard@GTScompanies.com>)
Ответы Re: Query cancelled errors  (Jason Hihn <jhihn@paytimepayroll.com>)
Список pgsql-novice
David Rickard <David.Rickard@GTScompanies.com> writes:
>>> ERROR:  Query was cancelled.

> postmaster is running in the background; started via:
> pg_ctl start -D PG_DATA -s -l PG_LOG -o '-i'

Hm.  I notice that pg_ctl does not use "nohup" to start the postmaster,
which seems like a really bad idea now that I think about it.  Do things
get better if you make the relevant section of pg_ctl look like

    if [ -n "$logfile" ]; then
        nohup "$po_path" ${1+"$@"} </dev/null >>$logfile 2>&1 &
    else
        # when starting without log file, redirect stderr to stdout, so
        # pg_ctl can be invoked with >$logfile and still have pg_ctl's
        # stderr on the terminal.
        nohup "$po_path" ${1+"$@"} </dev/null 2>&1 &
    fi

?

            regards, tom lane

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

Предыдущее
От: David Rickard
Дата:
Сообщение: Re: Query cancelled errors
Следующее
От: "szucs"
Дата:
Сообщение: Re: Search for data in a similar field in a related table, too