Thread

  1. RE: starting postmaster problems

    Patrick Coulombe <11h11@videotron.ca> — 2000-10-13T14:57:53Z

    on my server, this is how i do it :
    
    in etc/rc.d/rc.local :
    /bin/su - postgres -c "/home/postgres/runpostgres"
    
    runpostgres :
    #!/bin/sh
    export LC_CTYPE=koi8-r
    export LC_COLLATE=koi8-r
    postmaster -i -B 1024 -S -D/usr/local/pgsql/data/ -o '-Fe'
    
    
    note that i run postgresql 6.
    pat
    
    
    
    
  2. Re: RE: starting postmaster problems

    Mike White <jmwhite@mail.hot1.net> — 2000-10-21T19:10:58Z

    On Fri, 13 Oct 2000, Patrick Coulombe wrote:
    > on my server, this is how i do it :
    > 
    > in etc/rc.d/rc.local :
    > /bin/su - postgres -c "/home/postgres/runpostgres"
    > 
    > runpostgres :
    > #!/bin/sh
    > export LC_CTYPE=koi8-r
    > export LC_COLLATE=koi8-r
    > postmaster -i -B 1024 -S -D/usr/local/pgsql/data/ -o '-Fe'
    > 
    > 
    > note that i run postgresql 6.
    > pat
    
    Well Pat, I tried it this way and still no luck.  I'm beginning to think it
    might be some weird Mandrake thing.  I'm going to try that mailing list for
    help.  Thanks for trying to help.
    
    Mike
    
    
    
  3. Using KDE to start Postgres

    Frank Hilliard <frankhilliard@home.com> — 2000-10-21T22:24:43Z

    I can get Postgres running by going su postgres, logging in, and then using
    psql. However, what I'd like to do is to use the icon in the KDE menu under
    Debian, Databases, Postgresql. When I do this from my home directory, the
    terminal flashes up and then disappears. What permissions do I have to put in
    place to launch Postgres from my own Linux account?
    
    Frank Hilliard