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
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>pg_controldata</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="reference-server.html" title="PostgreSQL Server Applications">
<link rel="prev" href="app-ipcclean.html" title="ipcclean">
<link rel="next" href="app-pg-ctl.html" title="pg_ctl">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
<a name="app-pgcontroldata"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>pg_controldata — display control information of a <span class="productname">PostgreSQL</span> database cluster</p>
</div>
<a name="id809543"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<div class="cmdsynopsis"><p><code class="command">pg_controldata</code> [<em class="replaceable"><code>datadir</code></em>]</p></div>
</div>
<div class="refsect1" lang="en">
<a name="r1-app-pgcontroldata-1"></a><h2>Description</h2>
<p> <code class="command">pg_controldata</code> prints information initialized during
<code class="command">initdb</code>, such as the catalog version and server locale.
It also shows information about write-ahead logging and checkpoint
processing. This information is cluster-wide, and not specific to any one
database.
</p>
<p> This utility may only be run by the user who initialized the cluster because
it requires read access to the data directory.
You can specify the data directory on the command line, or use
the environment variable <code class="envar">PGDATA</code>.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id809614"></a><h2>Environment</h2>
<div class="variablelist"><dl>
<dt><span class="term"><code class="envar">PGDATA</code></span></dt>
<dd><p> Default data directory location
</p></dd>
</dl></div>
</div>
</div></body>
</html>
|