On Feb 10, 2011, at 6:55 AM, Udo Waechter wrote:

> Hello,
> I am one of those who have this problem. Some people suggested using Ruby 
> Enterprise. I looked at its installation, it looked a little bit 
> time-consuming, so I did not try that one out.

Well, I find it takes about 30 min at the most, saves on RAM, and causes puppet 
it use a little more CPU.  Here's what I did.  This method requires a compiler. 
 You can also do everything up to (but not including) step 5 without affecting 
puppet.  It's also easy to reverse.

1) Changed /usr/share/puppet/rack/puppetmasterd/config.ru to use an absolute 
path to the folder.
Need this line:
$:.unshift('/usr/lib/ruby/1.8/')

2) Install the dependencies for the compile:
        package { "libssl-dev": ensure => present }
        package { "libsqlite3-dev": ensure => present }
        package { 'libmysql++-dev': ensure => present }
        package { 'libpq-dev': ensure => present }
        package { 'apache2-prefork-dev': ensure => present }
        package { 'libapr1-dev': ensure => present }
        package { 'libaprutil1-dev': ensure => present }

3) Installed RubyEE from their universal package.

4) Added a passengerEE mod to /etc/apache/mods-avaliable/

/etc/apache2/mods-avaliable/passengeree.load:
LoadModule passenger_module 
/opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/passenger-2.2.15/ext/apache2/mod_passenger.so
PassengerRoot 
/opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/passenger-2.2.15
PassengerRuby /opt/ruby-enterprise-1.8.7-2010.02/bin/ruby

5) Disable the old passenger and enable the new one
a2dismod passenger
a2enmod passengeree
service apache2 restart

If things don't work do this to enable your old passenger:
a2enmod passenger
a2dismod passengeree
service apache2 restart

-- 
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.

Reply via email to