Re: var/log/postgresql deletion mystery Ubuntu 12.10 - Mailing list pgsql-general

From Andrew Taylor
Subject Re: var/log/postgresql deletion mystery Ubuntu 12.10
Date
Msg-id CAFAE3Jw1BwrBK=2Skviqiyad8=zgdQ13q0oqPF+rM9f=u5_6LA@mail.gmail.com
Whole thread Raw
In response to Re: var/log/postgresql deletion mystery Ubuntu 12.10  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: var/log/postgresql deletion mystery Ubuntu 12.10  (Stuart Bishop <stuart@stuartbishop.net>)
List pgsql-general
Here's what I did to fix this in Ubuntu 12.10.

Now I cannot explain (a) why this problem came into being or (b) what the
science is behind my fix. This was my first dive into Linux logs and there
being seemingly an array of ways logging can be handled now, and was
handled historically, with some variation across linux distributions. It's
a little bewildering.  All I can say it this works, and if someone can
offer me insight into (postgres) logs in Ubuntu it would be appreciated. So
here we go:

Syslog seems to be one of the key processes available for logging. You can
use this to determine what gets logged by given processes.

In /etc/rsyslog.d/50-default.conf
Add this line:
local0.* -/var/log/postgresql/

And edit this line from this:
daemon.*;mail.*;\
news.err;\
*.=debug;*.=info;\
*.=notice;*.=warn |/dev/xconsole

To be this:
daemon.*;mail.*;\
news.err;\
*.=debug;*.=info;\
*.=notice;*.=warn |/dev/xconsole;\
local0.none

The above is based on information at this link:
https://bowerstudios.com/node/890

Now (as if by magic) The /var/log/postgres directory is deleted and
recreated on shutdown/startup, AND a postgresql-9.1-main.log file is
created on reboot.


On Fri, Feb 8, 2013 at 11:43 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

> Andrew Taylor <andydtaylor@gmail.com> writes:
> > I have to create this directory each time I want to start the server.
> > Something is deleting it when I close down or start up my laptop.
>
> > Any suggestions as to what could be doing this, or how I could find out?
> I
> > presently have version 9.1 installed.
>
> > All I can add is "it used to work!". Since then I have upgraded to ubuntu
> > 12.10 from 12.04 and installed mongodb amongst other things.
>
> Over in Fedora-land they've recently switched to a scheme whereby most
> "temporary" directories are deleted at reboot, so that packages need to
> arrange for their recreation.  Is it possible something similar is going
> on in your newer Ubuntu version?  It would seem to me to be the height
> of stupidity to flush log files this way, but it's hard to think of
> another reason for the directory to disappear.  If all other stuff under
> /var/log is deleted or reset at reboot, then this could be the explanation.
>
>                         regards, tom lane
>

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: to_number, to_char inconsistency.
Next
From: Modulok
Date:
Subject: Can you create aliases in the psql shell?