[Puppet Users] Re: How to use Puppet to ensure the Sun JDK is installed on CentOS-5.5

2011-04-13 Thread Blazer40
This is what I did.. I don't mind the extra step of exploding
Oracle's package as in our env the java version doesn't change
often.I suppose you could script this up though on the repo server
side of things..

-Matt

On Apr 13, 12:27 pm, jcbollinger  wrote:
> On Apr 12, 11:38 pm, Jon Jaroker  wrote:
>
> > I have the same requirement to install Sun JDK, not openJDK.  Below is
> > the module I am using.  I would be grateful for suggestions on how
> > this install can be done better.
>
> How about manually using the Sun installer to create the RPM, then
> sticking that RPM in a local repository from which it can be installed
> via Puppet as an ordinary Package?
>
> John

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.



[Puppet Users] Re: Puppet Master System Requirements

2011-05-10 Thread Blazer40
My setup handles about 40 clients on a default half hour schedule.
Manifests take anywhere from .1 to .4 seconds to compile on the
master.  The master is a 3.46ghz hex-core xeon server with 24GB of ram
and a raid 6 (lsi hardware raid) on 7200rpm sata drives.   15 minute
load on the server is usually around .17 and that's with 3 other
vm's(testing vm's, usually idle) running on the server that is the
puppetmaster.   Obviously really really complicated manifests will
probably take a tad bit longer to compile so YMMV.

On May 10, 9:04 am, Panaman  wrote:
> I've been messing around with Puppet on a VM on my personal desktop.
> It looks descent. I was wondering what kind of load this thing would
> have managing about 400 nodes.
> Does this thing require a beefy server?

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.



[Puppet Users] Re: Puppet Master System Requirements

2011-05-11 Thread Blazer40
Since I use passenger on ruby enterprise 2011.03,   here is the output
from passenger-memory-stats:
-- Apache processes --
PIDPPID   VMSizePrivate  Name
--
7900   26907  229.3 MB  0.5 MB   /usr/sbin/httpd
21341  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26907  1  229.0 MB  0.4 MB   /usr/sbin/httpd
26924  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26925  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26926  26907  229.3 MB  0.6 MB   /usr/sbin/httpd
26927  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26928  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26929  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26930  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26931  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
27245  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
### Processes: 12
### Total private dirty RSS: 6.25 MB


 Nginx processes 

### Processes: 0
### Total private dirty RSS: 0.00 MB


- Passenger processes -
PIDVMSizePrivate  Name
---
1707   182.1 MB  75.2 MB  Rails: /var/www/apps/puppet-dashboard
3596   208.7 MB  99.0 MB  Rack: /usr/share/puppet/rack/puppetmasterd
26909  16.5 MB   0.2 MB   PassengerWatchdog
26912  155.8 MB  0.9 MB   PassengerHelperAgent
26914  56.8 MB   7.7 MB   Passenger spawn server
26919  50.2 MB   0.4 MB   PassengerLoggingAgent
### Processes: 6
### Total private dirty RSS: 183.50 MB

AKA,  it doesn't eat alot (at least compared to some of the other
rails apps I have running on other servers!)

On May 10, 3:00 pm, Nigel Kersten  wrote:
> On Tue, May 10, 2011 at 6:32 PM, Blazer40  wrote:
> > My setup handles about 40 clients on a default half hour schedule.
> > Manifests take anywhere from .1 to .4 seconds to compile on the
> > master.  The master is a 3.46ghz hex-core xeon server with 24GB of ram
> > and a raid 6 (lsi hardware raid) on 7200rpm sata drives.   15 minute
> > load on the server is usually around .17 and that's with 3 other
> > vm's(testing vm's, usually idle) running on the server that is the
> > puppetmaster.   Obviously really really complicated manifests will
> > probably take a tad bit longer to compile so YMMV.
>
> Great detail.
>
> How much peak RAM usage do you usually end up with?
>
> Are you running with Passenger/Apache ? Unicorn? nginx? mongrel?
>
> Details on the number of backends would be great.
>
>
>
>
>
>
>
>
>
>
>
> > On May 10, 9:04 am, Panaman  wrote:
> > > I've been messing around with Puppet on a VM on my personal desktop.
> > > It looks descent. I was wondering what kind of load this thing would
> > > have managing about 400 nodes.
> > > Does this thing require a beefy server?
>
> > --
> > 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+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/puppet-users?hl=en.
>
> --
> Nigel Kersten
> Product, Puppet Labs
> @nigelkersten

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.



[Puppet Users] Re: Puppet Master System Requirements

2011-05-11 Thread Blazer40
Since I use passenger on ruby enterprise 2011.03,   here is the output
from passenger-memory-stats:
-- Apache processes --
PIDPPID   VMSizePrivate  Name
--
7900   26907  229.3 MB  0.5 MB   /usr/sbin/httpd
21341  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26907  1  229.0 MB  0.4 MB   /usr/sbin/httpd
26924  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26925  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26926  26907  229.3 MB  0.6 MB   /usr/sbin/httpd
26927  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26928  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26929  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26930  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
26931  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
27245  26907  229.3 MB  0.5 MB   /usr/sbin/httpd
### Processes: 12
### Total private dirty RSS: 6.25 MB


 Nginx processes 

### Processes: 0
### Total private dirty RSS: 0.00 MB


- Passenger processes -
PIDVMSizePrivate  Name
---
1707   182.1 MB  75.2 MB  Rails: /var/www/apps/puppet-dashboard
3596   208.7 MB  99.0 MB  Rack: /usr/share/puppet/rack/puppetmasterd
26909  16.5 MB   0.2 MB   PassengerWatchdog
26912  155.8 MB  0.9 MB   PassengerHelperAgent
26914  56.8 MB   7.7 MB   Passenger spawn server
26919  50.2 MB   0.4 MB   PassengerLoggingAgent
### Processes: 6
### Total private dirty RSS: 183.50 MB

AKA,  it doesn't eat alot (at least compared to some of the other
rails apps I have running on other servers!)

On May 10, 3:00 pm, Nigel Kersten  wrote:
> On Tue, May 10, 2011 at 6:32 PM, Blazer40  wrote:
> > My setup handles about 40 clients on a default half hour schedule.
> > Manifests take anywhere from .1 to .4 seconds to compile on the
> > master.  The master is a 3.46ghz hex-core xeon server with 24GB of ram
> > and a raid 6 (lsi hardware raid) on 7200rpm sata drives.   15 minute
> > load on the server is usually around .17 and that's with 3 other
> > vm's(testing vm's, usually idle) running on the server that is the
> > puppetmaster.   Obviously really really complicated manifests will
> > probably take a tad bit longer to compile so YMMV.
>
> Great detail.
>
> How much peak RAM usage do you usually end up with?
>
> Are you running with Passenger/Apache ? Unicorn? nginx? mongrel?
>
> Details on the number of backends would be great.
>
>
>
>
>
>
>
>
>
>
>
> > On May 10, 9:04 am, Panaman  wrote:
> > > I've been messing around with Puppet on a VM on my personal desktop.
> > > It looks descent. I was wondering what kind of load this thing would
> > > have managing about 400 nodes.
> > > Does this thing require a beefy server?
>
> > --
> > 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+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/puppet-users?hl=en.
>
> --
> Nigel Kersten
> Product, Puppet Labs
> @nigelkersten

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.