1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
.. _pg_autoctl_drop_monitor:
pg_autoctl drop monitor
=======================
pg_autoctl drop monitor - Drop the pg_auto_failover monitor
Synopsis
--------
This command allows to review all the replication settings of a given
formation (defaults to `'default'` as usual)::
usage: pg_autoctl drop monitor [ --pgdata --destroy ]
--pgdata path to data directory
--destroy also destroy Postgres database
Options
-------
--pgdata
Location of the Postgres node being managed locally. Defaults to the
environment variable ``PGDATA``. Use ``--monitor`` to connect to a monitor
from anywhere, rather than the monitor URI used by a local Postgres node
managed with ``pg_autoctl``.
--destroy
By default the ``pg_autoctl drop monitor`` commands does not remove the
Postgres database for the monitor. When using ``--destroy``, the Postgres
installation is also deleted.
Environment
-----------
PGDATA
Postgres directory location. Can be used instead of the ``--pgdata``
option.
XDG_CONFIG_HOME
The pg_autoctl command stores its configuration files in the standard
place XDG_CONFIG_HOME. See the `XDG Base Directory Specification`__.
__ https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
XDG_DATA_HOME
The pg_autoctl command stores its internal states files in the standard
place XDG_DATA_HOME, which defaults to ``~/.local/share``. See the `XDG
Base Directory Specification`__.
__ https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|