Forrest logo
back to context overview

pg_ctl

List of commands for pg_ctl:

  • pg_ctl:tldr:21690 pg_ctl: Restart a PostgreSQL server.
    $ pg_ctl -D ${data_directory} restart
    try on your machine
    explain this command
  • pg_ctl:tldr:747ce pg_ctl: Initialize a new PostgreSQL database cluster.
    $ pg_ctl -D ${data_directory} init
    try on your machine
    explain this command
  • pg_ctl:tldr:8661f pg_ctl: Start a PostgreSQL server.
    $ pg_ctl -D ${data_directory} start
    try on your machine
    explain this command
  • pg_ctl:tldr:92f96 pg_ctl: Reload the PostgreSQL server configuration.
    $ pg_ctl -D ${data_directory} reload
    try on your machine
    explain this command
back to context overview