>I'm trying to start the postmaster exactly how it is written in the
>installation instructions:
>nohup postmaster -i > pgserver.log 2>&1 &
>However, RedHat Linux 6.1 gives me an 'Ambiguous output redirect '
>error. This is probably because I'm using TCSH instead of BASH.
>Is there a way that I
Alfred Perlstein wrote:
> You need to read your shell's manpage, try:
>
> nohup postmaster -i >& pgserver.log &
>
This worked. The output still gets directed to stdout but is also logged
into the file.
Thanks.
-Tony