Re: Discovering postgres binary directory location

Поиск
Список
Период
Сортировка
От Paul Förster
Тема Re: Discovering postgres binary directory location
Дата
Msg-id 454F56E8-AC00-4C0C-8D3B-23AA8388BB06@gmail.com
обсуждение исходный текст
Ответ на Re: Discovering postgres binary directory location  (Paul Förster <paul.foerster@gmail.com>)
Список pgsql-general
Hi Mark,

> On 12. Nov, 2020, at 16:37, Paul Förster <paul.foerster@gmail.com> wrote:
>
> how about searching for pg_ctl only inside a bin directory:
>
> $ find / -type f -name "pg_ctl" -exec grep "/bin/" {} \; 2>/dev/null
> Binary file /data/postgres/12.4/bin/pg_ctl matches
> Binary file /data/postgres/13.0/bin/pg_ctl matches
>
> That should also solve your source tree and root mail problems.

btw., you can also do it without calling grep:

$ find / -type f -executable -regex "*/bin/pg_ctl" 2>/dev/null

At least on openSUSE. But I guess, it should be pretty much the same on CentOS.

Cheers,
Paul


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

Предыдущее
От: Paul Förster
Дата:
Сообщение: Re: Discovering postgres binary directory location
Следующее
От: Alban Hertroys
Дата:
Сообщение: Re: Is it possible to write a generic UPSERT?