hello, im working on a project that as some very low system resources. Does Puppet typically run its own webserver despite the resistance of other web servers on the device? Can Puppet use any CGI webserver? I need to have .htaccess.... thank you, tom --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
tom wrote:> hello, im working on a project that as some very low system resources. > Does Puppet typically run its own webserver despite the resistance of > other web servers on the device?I''ve got a puppetd and puppetmasterd running on a 256MB VM, with no other web servers installed. Top output sorted by resident memory:> top - 08:25:12 up 27 days, 9:18, 2 users, load average: 0.00, 0.07, 0.06 > Tasks: 34 total, 3 running, 31 sleeping, 0 stopped, 0 zombie > Cpu(s): 0.0%us, 0.0%sy, 0.0%ni,100.0%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st > Mem: 262292k total, 209396k used, 52896k free, 7268k buffers > Swap: 1048568k total, 38088k used, 1010480k free, 29844k cached > > PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND > 10591 puppet 15 0 91068 78m 2480 S 0.0 30.7 6:25.30 ruby > 339 root 18 0 57320 44m 2204 S 0.0 17.3 3:49.76 ruby > 11195 root 15 0 7876 2380 1928 R 0.0 0.9 0:00.02 sshdpuppetmasterd is the highest-memory process, puppetd is second. I don''t know how much of that is due to the web server, but I think the only other servers in common usage are Apache, Mongrel, and Nginx. -- Mike Renfro / R&D Engineer, Center for Manufacturing Research, 931 372-3601 / Tennessee Technological University -- renfro@tntech.edu --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
Thank you for your help. BTW, when i said, "...despite the resistance of other web servers..." i meant "existence of other web servers". "Very low resources" in the range of ~32mb RAM. The device to be managed by puppet will optionally run an web service that need .htaccess. I would like the set up of Puppet to be consistent crossed the devices regardless of other web services. Im curious if best practice would to have Puppet run in its own web server rather than a virtual host on Apache. What is everyone else experiencing in resource consumption? -tom --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
On Jan 27, 2009, at 12:29 PM, Tom D. Davidson wrote:> > Thank you for your help. BTW, when i said, "...despite the resistance > of other web servers..." i meant "existence of other web servers". > > "Very low resources" in the range of ~32mb RAM. > > The device to be managed by puppet will optionally run an web service > that need .htaccess. I would like the set up of Puppet to be > consistent crossed the devices regardless of other web services. > > Im curious if best practice would to have Puppet run in its own web > server rather than a virtual host on Apache.The client doesn''t need a web server at all, and you can even run it out of cron. The server can be run from Apache with Passenger, if you prefer, or behind Apache via Mongrel. -- Real freedom lies in wildness, not in civilization. -- Charles Lindbergh --------------------------------------------------------------------- Luke Kanies | http://reductivelabs.com | http://madstop.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---