|
1 |
| -<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.150 2007/10/09 18:14:01 neilc Exp $ --> |
| 1 | +<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.151 2007/10/20 04:00:38 tgl Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter Id="runtime-config">
|
4 | 4 | <title>Server Configuration</title>
|
@@ -2299,6 +2299,25 @@ SELECT * FROM parent WHERE key = 2400;
|
2299 | 2299 | <varname>logging_collector</varname> must be enabled to generate
|
2300 | 2300 | CSV-format log output.
|
2301 | 2301 | </para>
|
| 2302 | + |
| 2303 | + <note> |
| 2304 | + <para> |
| 2305 | + On most Unix systems, you will need to alter the configuration of |
| 2306 | + your system's <application>syslog</application> daemon in order |
| 2307 | + to make use of the <systemitem>syslog</systemitem> option for |
| 2308 | + <varname>log_destination</>. <productname>PostgreSQL</productname> |
| 2309 | + can log to <application>syslog</application> facilities |
| 2310 | + <literal>LOCAL0</> through <literal>LOCAL7</> (see <xref |
| 2311 | + linkend="guc-syslog-facility">), but the default |
| 2312 | + <application>syslog</application> configuration on most platforms |
| 2313 | + will discard all such messages. You will need to add something like |
| 2314 | +<programlisting> |
| 2315 | +local0.* /var/log/postgresql |
| 2316 | +</programlisting> |
| 2317 | + to the <application>syslog</application> daemon's configuration file |
| 2318 | + to make it work. |
| 2319 | + </para> |
| 2320 | + </note> |
2302 | 2321 | </listitem>
|
2303 | 2322 | </varlistentry>
|
2304 | 2323 |
|
|