This article is half-done without your Comment! *** Please share your thoughts via Comment ***
In this post, I am sharing few utility commands which we can use to start and stop the Greenplum Database Cluster.
Start the database cluster:
The gpstart utility starts the database on Greenplum cluster.
1 |
gpstart |
Restart the database cluster:
1 |
gpstop -r |
Reload the configuation:
It reloads the pg_hba.conf and postgresql.conf file.
1 |
gpstop -u |
Stop the database cluster:
It stops all the processes, master-child segment instances, parallel worker.
1 |
gpstop |
Stop the database cluster in fast mode:
1 |
gpstop -M fast |
Leave a Reply