[ADMIN] Installing 6.3.2 and 6.4 in the same machine

1998-11-24 Thread Antonio Garcia Mari
I have multiple databases running on a linux server. I'd like to hardly test 6.4 before upgrading. Can i run a 6.4 postmaster in the same machine i'm running 6.3.2? thanks. Antonio Garcia Mari Mallorca (Spain)

I got the answer!! -- Re: [ADMIN] pgsql.sh

1998-11-24 Thread Jonah Kuo
Matthew Hixson wrote: > I think this might be part of the problem: from 'man postmaster' > > " -S Specifies that the postmaster process should start up in silent mode. > That is, it will > disassociate from the user's (controlling) tty and start its > own process group. This >

Re: [ADMIN] pgsql.sh

1998-11-24 Thread Matthew Hixson
On Tue, 24 Nov 1998, Jonah Kuo wrote: > > -S -o -F 2>&1 > /usr/local/pgsql/errlog' & > > It still doesn't help, I have bash installed in /usr/local/bin, then > I modified the first line to #!/usr/local/bin/bash, amd modified > the line you wrote above, then try again, then result in same. > >

Re: [ADMIN] pgsql.sh

1998-11-24 Thread Jonah Kuo
Matthew Hixson wrote: > On this line: > > -S -o -F > /usr/local/pgsql/errlog' & > > Modify it to look like this: > > -S -o -F 2>&1 > /usr/local/pgsql/errlog' & > > Assuming this script runs through bash it will direct standard error > (stderr) to standard output (stdout). All output will be sent

Re: [ADMIN] pgsql.sh

1998-11-24 Thread Matthew Hixson
On Mon, 23 Nov 1998, Jonah Kuo wrote: > Hello, > > First of all, I apologize if this has been discussed before. > > I have this startup script 'pgsql.sh' on my FreeBSD-3.0 system, > everything goes fine except I can't have error messages send to > the file I specified in this script > > #!/bin

Re: [ADMIN] pgsql.sh

1998-11-24 Thread Jonah Kuo
Jason Boxman wrote: > On Tue, 24 Nov 1998, Jonah Kuo wrote: > Perhaps the user you're running it as (should be postgres user) doesn't > have write permissions to that directory? Can you cat > > /usr/local/pgsql/errlog and add stuff manually as the postgres user? I > don't think I can be too much