Hi all My lighty spawn 10 fcgi process, some times, one or two of them will eat all most 90% CPU, when i kill them, everything is ok. I want a script to auto kill these Big fcgi, could you give me some advise? regards -- Posted via http://www.ruby-forum.com/.
joe wrote:> Hi all > My lighty spawn 10 fcgi process, some times, one or two of them will > eat all most 90% CPU, when i kill them, everything is ok. > I want a script to auto kill these Big fcgi,What the hell is it doing spawning 10 processes? Can you post your lighttpd.conf? -- Alex
......
fastcgi.server = ( ".fcgi" =>
( "localhost" =>
(
"socket" =>
"/home/joe/sites/app/temp/lighttpd-fcgi.socket",
"bin-path" =>
"/home/joe/sites/app/public/dispatch.fcgi",
"bin-environment" => ( "RAILS_ENV" =>
"production" ),
"min-procs" => 1,
"max-procs" => 2,
"idle-timeout" => 60
)
)
)
.....
Alex Young wrote:> joe wrote:
>> Hi all
>> My lighty spawn 10 fcgi process, some times, one or two of them will
>> eat all most 90% CPU, when i kill them, everything is ok.
>> I want a script to auto kill these Big fcgi,
> What the hell is it doing spawning 10 processes? Can you post your
> lighttpd.conf?
--
Posted via http://www.ruby-forum.com/.
any advise? regards joe wrote:> ...... > fastcgi.server = ( ".fcgi" => > ( "localhost" => > ( > "socket" => "/home/joe/sites/app/temp/lighttpd-fcgi.socket", > "bin-path" => "/home/joe/sites/app/public/dispatch.fcgi", > "bin-environment" => ( "RAILS_ENV" => "production" ), > "min-procs" => 1, > "max-procs" => 2, > "idle-timeout" => 60 > ) > ) > ) > ..... > > > > > > Alex Young wrote: >> joe wrote: >>> Hi all >>> My lighty spawn 10 fcgi process, some times, one or two of them will >>> eat all most 90% CPU, when i kill them, everything is ok. >>> I want a script to auto kill these Big fcgi, >> What the hell is it doing spawning 10 processes? Can you post your >> lighttpd.conf?-- Posted via http://www.ruby-forum.com/.
joe wrote:> any advise? > regardsNot from that on its own... I can''t see how that setup would spawn extra processes unless the originals were dying somehow. -- Alex> > > joe wrote: >> ...... >> fastcgi.server = ( ".fcgi" => >> ( "localhost" => >> ( >> "socket" => "/home/joe/sites/app/temp/lighttpd-fcgi.socket", >> "bin-path" => "/home/joe/sites/app/public/dispatch.fcgi", >> "bin-environment" => ( "RAILS_ENV" => "production" ), >> "min-procs" => 1, >> "max-procs" => 2, >> "idle-timeout" => 60 >> ) >> ) >> ) >> ..... >> >> >> >> >> >> Alex Young wrote: >>> joe wrote: >>>> Hi all >>>> My lighty spawn 10 fcgi process, some times, one or two of them will >>>> eat all most 90% CPU, when i kill them, everything is ok. >>>> I want a script to auto kill these Big fcgi, >>> What the hell is it doing spawning 10 processes? Can you post your >>> lighttpd.conf? > >