Re: Differing data directories

Поиск
Список
Период
Сортировка
От Laurenz Albe
Тема Re: Differing data directories
Дата
Msg-id 1519370549.2530.6.camel@cybertec.at
обсуждение исходный текст
Ответ на Differing data directories  ("Ron Watkins" <rwatki@gmail.com>)
Список pgsql-novice
Ron Watkins wrote:
> I have a postgresql server setup/installed (finally).
> Currently, it’s installed data directory is: /var/lib/pgsql/10/data
> However, I need to put a database into a custom filesystem.
> Is it possible to have multiple PGDATA directories, and if so, how?
>  
> Currently, the postgres database is under /var/lib/pgsql/10/data,
> but I need my main database to be in a different filesystem…

One simple solution would be:

# systemctl stop postgresql-10  # or whatever it takes to stop the server
# mv /var/lib/pgsql/10/data /your/mountpoint
# ln -s /your/mountpoint/data /var/lib/pgsql/10/data

Then you have to make sure that the operating system user has
permissions to enter the mount point.

Start your server and you are done.

Yours,
Laurenz Albe
-- 
Cybertec | https://www.cybertec-postgresql.com


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

Предыдущее
От: Laurenz Albe
Дата:
Сообщение: Re: New DB cluster.
Следующее
От: "Ron Watkins"
Дата:
Сообщение: Slowly making progress