Re: [GENERAL] Is there a way to start postgresql v907 as non daemon process

2012-05-25 Thread Albe Laurenz
Karthik wrote: I have observed by default posgresql 8.x onwards starts as daemon process. Is there a way to avoid it. I want it to run as normal process. The parent of the server process should be the process that starts the server instead of being PID 1 ( init ). Till 7.4.2 ( Which was the

Re: [GENERAL] Is there a way to start postgresql v907 as non daemon process

2012-05-25 Thread Karthik
Thank you Laurenz, Even executing $ postgres -D /data/directory Used to start server in deamon mode, the reason was the postgres.conf was having silent_mode = on ( freebsd port used to do this ). Got this solved by sending silent_mode=off command line. With this my problem is solved. Trying

[GENERAL] Is there a way to start postgresql v907 as non daemon process

2012-05-24 Thread Karthik
I have observed by default posgresql 8.x onwards starts as daemon process. Is there a way to avoid it. I want it to run as normal process. The parent of the server process should be the process that starts the server instead of being PID 1 ( init ). Till 7.4.2 ( Which was the older version used