ubuntu – Postgresql:更改默认数据路径

前端之家收集整理的这篇文章主要介绍了ubuntu – Postgresql:更改默认数据路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在启动时将Postgresql服务器指向特定的非默认数据目录.现在,我必须(手动或在脚本中)使用pg_ctl来停止并使用my / new / path / to / data重新启动数据库.

操作系统是Ubuntu,默认数据目录是/var/lib/postgresql/8.4/main

打开/etc/postgresql/8.4/main/postgresql.conf并将 data_directory属性调整为新数据路径并使用(preffered)pg_ctlcluster 8.4 main stop / start或 pg_ctl重新启动服务器(如果你想这样做).

确保只有postgres用户可以访问/ new / path / to / data:

chown postgres.postgres /new/path/to/data
chmod 700 /new/path/to/data
原文链接:https://www.f2er.com/ubuntu/348017.html

猜你在找的Ubuntu相关文章