Re: Postgres build doc

Поиск
Список
Период
Сортировка
От Wells Oliver
Тема Re: Postgres build doc
Дата
Msg-id CAOC+FBWJj0_uPkELUYVD28Rnm-UwVuFBvELj1_w+DJqKqrMH3g@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Postgres build doc  (Ron Johnson <ronljohnsonjr@gmail.com>)
Ответы Re: Postgres build doc  (Norbert Poellmann <np@ibu.de>)
Список pgsql-admin
Do people really still build from source these days? Are there highly secured environments where binary repositories etc are a no-go?

On Mon, May 13, 2024 at 6:07 AM Ron Johnson <ronljohnsonjr@gmail.com> wrote:
On Mon, May 13, 2024 at 3:07 AM Naveed Iftikhar <naveed27c@yahoo.com> wrote:
Hi Experts,

   I am an Oracle DBA and adopting the PostgreSQL database.  Our core Operating system platform is RHEL (Linux). Can someone please share any PostgreSQL Build document where the requirement filesystem, environment variables, build process , monitoring and extension details are documented from engineering standpoint which I can related to my own needs. 

The RHEL repository links are here: https://www.postgresql.org/download/linux/redhat/

Install PG just like any other RPM package.  Part of the process creates user "postgres" with $HOME in /var/lib/pgsql.  It also creates ~postgres/.pgsql_profile.  That's where "all" (there aren't many) environment variables go.

If, for example, you're using Postgresql 16, I would make mount points named:
/Database/16
/Database/16/backups
/var/log/postgresql

There are no hard+fast rules, though.   If you don't like /Database, put it somewhere else.  /var/lib/pgsql/16 works fine, too.

/Database and everything under it should be owned by postgres:postgres.

Then "mkdir /Database/16/data", and then "initdb -D /Database/16/data".  Define and export environment variable PGDATA=/Database/16/data in ~postgres/.pgsql_profile.  

THE configuration file is $PGDATA/postgresql.conf.  You'll need to modify the log_directory  entry to be /var/log/postgresql (or wherever you decide to put it).  I would not leave it in it's default $PGDATA/data/pg_log, since everything in and under $PGDATA gets replicated, and you don't want your logs replicated.



--

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

Предыдущее
От: hubert depesz lubaczewski
Дата:
Сообщение: Re: Not clear with the Explain Plan output
Следующее
От: Naveed Iftikhar
Дата:
Сообщение: Re: Postgres build doc