PostgreSQL Database Cluster

 PostgreSQL Database Cluster



What is PostgreSQL Database Cluster ?


How to initialize database cluster ?

initdb -D data_directory

pg_ctl -D data_direcotry initdb

 

How to start/stop cluster?


start cluster

pg_ctl -D data_directory start 


stop cluster

type --- smart,fast,immediate

pg_ctl -D data_directory stop -m type


how to restart/reload cluster

pg_ctl restart

pg_ctl reload

select pg_reload_conf();

Comments