On Jan 31, 2011, at 1:47 AM, Tilmann Singer wrote: > Hi, > > I'm seeing the following output of ps after starting unicorn, which as > I understand it means that there are multiple master processes > running, each with its own pid. Is that normal behaviour or is there > something wrong with my setup? > <snip>
> # config/unicorn.rb > worker_processes 3 > pid "tmp/pids/unicorn.pid" > stderr_path "log/unicorn.stderr.log" > stdout_path "log/unicorn.stdout.log" Unicorn doesn't kill the old master on it's own, you need an after_fork() like so (from the default/suggested unicorn conf) http://unicorn.bogomips.org/examples/unicorn.conf.rb _______________________________________________ Unicorn mailing list - [email protected] http://rubyforge.org/mailman/listinfo/mongrel-unicorn Do not quote signatures (like this one) or top post when replying
