Hi all, I''m new to Puppet and I''m trying to setup a puppet master and a client on Amazon EC2 using Passenger. I''ve gone through the steps described here (http://docs.puppetlabs.com/guides/passenger.html) and here (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, I am still having some issues. My Environment: * Amazon EC2 * Puppet 2.6.1 * Passenger 2.2.5 Issue #1: From the puppet master node you can see below that passenger is running. However, when I run passenger-status it says that it''s not running? Why? root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger root 17327 17314 0 19:37 ? 00:00:00 /var/lib/gems/1.8/gems/ passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 /var/lib/ gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ ruby1.8 /tmp/passenger.17294 root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto passenger root@ip-10-162-214-xxx:/var/log/apache2# passenger-status ERROR: Phusion Passenger doesn''t seem to be running. root@ip-10-162-214-xxx:/var/log/apache2# Issue #2: From the puppet client I execute "puppetd --waitforcert 60 --test" and receive below: root@ip-10-161-106-xxx:/etc/puppet# puppetd --waitforcert 60 --test notice: Ignoring --listen on onetime run err: Could not retrieve catalog from remote server: Error 500 on SERVER: However, this gives the 500 above and in the puppet master''s apache2 error.log I see below. [Mon Oct 25 19:37:02 2010] [warn] Init: Session Cache is not configured [hint: SSLSessionCache] [Mon Oct 25 19:37:02 2010] [notice] Apache/2.2.16 (Ubuntu) Phusion_Passenger/2.2.5 mod_ssl/2.2.16 OpenSSL/0.9.8o configured -- resuming normal operations *** Exception NameError in PhusionPassenger::Rack::ApplicationSpawner (uninitialized constant PhusionPassenger::Utils::PseudoIO::StringIO) (process 17328): from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/utils.rb:207:in `initialize'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/utils.rb:248:in `new'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/utils.rb:248:in `report_app_init_status'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/rack/application_spawner.rb:91:in `run'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/rack/application_spawner.rb:69:in `spawn_application'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/utils.rb:183:in `safe_fork'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/rack/application_spawner.rb:62:in `spawn_application'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/rack/application_spawner.rb:45:in `spawn_application'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/spawn_manager.rb:159:in `spawn_application'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/spawn_manager.rb:287:in `handle_spawn_application'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/abstract_server.rb:352:in `__send__'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/abstract_server.rb:352:in `main_loop'' from /var/lib/gems/1.8/gems/passenger-2.2.5/lib/ phusion_passenger/abstract_server.rb:196:in `start_synchronously'' from /var/lib/gems/1.8/gems/passenger-2.2.5/bin/passenger- spawn-server:61 Any idea(s) how to fix these two issues and what I''m doing wrong? -- 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.
Hi all, I am trying to use @@sshkey{...} and Sshkey <<| |>> to share host keys between compute nodes. It does work! But there is a weird issue. The same host key entry of each node will add into ssh_known_host again after restarted puppet each time. I only need one entry for each node in ssh_known_hosts. What should I do? Here is the code: class ssh { @@sshkey { "$hostname": key => $sshrsakey, type => ssh-rsa, name => ["$hostname,","$hostname.$domain,","$ipaddress"], } Sshkey <<| |>> } Even if enforced to remove /etc/ssh/ssh_known_hosts before collection using the following modified code, the result is same. class ssh { file { "/etc/ssh/ssh_known_hosts": ensure => absent } @@sshkey { "$hostname": key => $sshrsakey, type => ssh-rsa, name => ["$hostname,","$hostname.$domain,","$ipaddress"], require => File["/etc/ssh/ssh_known_hosts"] } Sshkey <<| |>> } The default mode of ssh_known_hosts created by the above code is 600. I tried to change it to 644 using the following code: class ssh { file { "/etc/ssh/ssh_known_hosts": ensure => absent } @@sshkey { "$hostname": key => $sshrsakey, type => ssh-rsa, name => ["$hostname,","$hostname.$domain,","$ipaddress"], require => File["/etc/ssh/ssh_known_hosts"] } Sshkey <<| |>> File <| title == "/etc/ssh/ssh_known_hosts" |> { mode => 644 } } But it is still 600. How can I limit to only one host key entry for each node in ssh_known_hosts and change its mode to 644? Thanks, Goodman -- 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 Oct 25, 2010, at 7:45 PM, Daneil Goodman wrote:> Hi all, > > I am trying to use @@sshkey{...} and Sshkey <<| |>> to share host keys between compute nodes. It does work! But there is a weird issue. The same host key entry of each node will add into ssh_known_host again after restarted puppet each time. I only need one entry for each node in ssh_known_hosts. What should I do? Here is the code: > > class ssh { > @@sshkey { "$hostname": > key => $sshrsakey, > type => ssh-rsa, > name => ["$hostname,","$hostname.$domain,","$ipaddress"], > } > Sshkey <<| |>> > } > > Even if enforced to remove /etc/ssh/ssh_known_hosts before collection using the following modified code, the result is same. > > class ssh { > file { "/etc/ssh/ssh_known_hosts": > ensure => absent > } > > @@sshkey { "$hostname": > key => $sshrsakey, > type => ssh-rsa, > name => ["$hostname,","$hostname.$domain,","$ipaddress"], > require => File["/etc/ssh/ssh_known_hosts"] > } > Sshkey <<| |>> > } > > The default mode of ssh_known_hosts created by the above code is 600. I tried to change it to 644 using the following code: > > class ssh { > file { "/etc/ssh/ssh_known_hosts": > ensure => absent > } > > @@sshkey { "$hostname": > key => $sshrsakey, > type => ssh-rsa, > name => ["$hostname,","$hostname.$domain,","$ipaddress"], > require => File["/etc/ssh/ssh_known_hosts"] > } > Sshkey <<| |>> > > File <| title == "/etc/ssh/ssh_known_hosts" |> { > mode => 644 > } > } > > But it is still 600. > > How can I limit to only one host key entry for each node in ssh_known_hosts and change its mode to 644?I don''t know how to fix your first problem, but I can help you with the second. If you create two resources for the same file, puppet fill fail with an error message (by design). This means that Sshkey isn''t using the file resource to manage the file. That means that override is doing nothing or, most likely, setting the permissions for the file you are declaring absent. In your example, you could fix the permission problem by doing this(Untested code, use at your own risk): class ssh { #Create an empty file file { "/etc/ssh/ssh_known_hosts": ensure => present, mode => 644, content = "", } @@sshkey { "$hostname": key => $sshrsakey, type => ssh-rsa, name => ["$hostname,","$hostname.$domain,","$ipaddress"], require => File["/etc/ssh/ssh_known_hosts"] } Sshkey <<| |>> } This is the code that I use for ssh keys. You might want to try it. Note the assumption about which ethernet interface is being used: @@sshkey { "${fqdn}": type => rsa, key => $sshrsakey, host_aliases => [ $ipaddress_eth0, ], } Sshkey <<| |>> -- 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.
You guys hijacked my thread. :-) Any idea about my passenger problems? -- 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 Oct 25, 2010, at 12:50 PM, Taylor Leese wrote:> Hi all, > > I''m new to Puppet and I''m trying to setup a puppet master and a client > on Amazon EC2 using Passenger. I''ve gone through the steps described > here (http://docs.puppetlabs.com/guides/passenger.html) and here > (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, I > am still having some issues. > > My Environment: > * Amazon EC2 > * Puppet 2.6.1 > * Passenger 2.2.5 > > Issue #1: > > From the puppet master node you can see below that passenger is > running. However, when I run passenger-status it says that it''s not > running? Why? > > root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger > root 17327 17314 0 19:37 ? 00:00:00 /var/lib/gems/1.8/gems/ > passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 /var/lib/ > gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ > ruby1.8 /tmp/passenger.17294 > root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto > passenger > root@ip-10-162-214-xxx:/var/log/apache2# passenger-status > ERROR: Phusion Passenger doesn''t seem to be running. > root@ip-10-162-214-xxx:/var/log/apache2#What distro are you using? A google search for that got me this message. Any chance it''s applicable? Message at: http://markmail.org/message/wdue4jfvqdjponha Quoted below:>> On Sun, Mar 28, 2010 at 8:50 PM, zdennis <zach...@gmail.com> wrote:>>We had a production site which was running on Passenger 2.2.5 and ruby- enterprise-1.8.6-20080810. It''s been running this >>combination for the past several months without issue.>>Today, the application went down with the error: uninitialized constant PhusionPassenger::Utils::PseudoIO::StringIO>Upgrade to 2.2.11. This bug has been fixed months ago.-- 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.
Patrick, I did run across that thread, but the GitHub site specifically says 2.2.5 is known to work (http://github.com/puppetlabs/puppet/tree/ master/ext/rack) which made me suspicious that it was my fault. At this point I guess there is no harm in trying 2.2.11 (or whatever the latest version is). Are people using passenger versions > 2.2.5 with success? - Taylor On Oct 26, 10:52 am, Patrick <kc7...@gmail.com> wrote:> On Oct 25, 2010, at 12:50 PM, Taylor Leese wrote: > > > > > Hi all, > > > I''m new to Puppet and I''m trying to setup a puppet master and a client > > on Amazon EC2 using Passenger. I''ve gone through the steps described > > here (http://docs.puppetlabs.com/guides/passenger.html) and here > > (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, I > > am still having some issues. > > > My Environment: > > * Amazon EC2 > > * Puppet 2.6.1 > > * Passenger 2.2.5 > > > Issue #1: > > > From the puppet master node you can see below that passenger is > > running. However, when I run passenger-status it says that it''s not > > running? Why? > > > root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger > > root 17327 17314 0 19:37 ? 00:00:00 /var/lib/gems/1.8/gems/ > > passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 /var/lib/ > > gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ > > ruby1.8 /tmp/passenger.17294 > > root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto > > passenger > > root@ip-10-162-214-xxx:/var/log/apache2# passenger-status > > ERROR: Phusion Passenger doesn''t seem to be running. > > root@ip-10-162-214-xxx:/var/log/apache2# > > What distro are you using? > > A google search for that got me this message. Any chance it''s applicable? > > Message at:http://markmail.org/message/wdue4jfvqdjponha > > Quoted below: > > >> On Sun, Mar 28, 2010 at 8:50 PM, zdennis <zach...@gmail.com> wrote: > >>We had a production site which was running on Passenger 2.2.5 and ruby- enterprise-1.8.6-20080810. It''s been running this >>combination for the past several months without issue. > >>Today, the application went down with the error: uninitialized constant PhusionPassenger::Utils::PseudoIO::StringIO > >Upgrade to 2.2.11. This bug has been fixed months ago.-- 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.
The reason I though it might be the problem is because a lot of people are saying that they got that error after it worked for months. This says to me that their might have been a change to something else that makes 2.2.5 stop working. On Oct 26, 2010, at 10:59 AM, Taylor Leese wrote:> Patrick, > > I did run across that thread, but the GitHub site specifically says > 2.2.5 is known to work (http://github.com/puppetlabs/puppet/tree/ > master/ext/rack) which made me suspicious that it was my fault. At > this point I guess there is no harm in trying 2.2.11 (or whatever the > latest version is). Are people using passenger versions > 2.2.5 with > success? > > - Taylor > > On Oct 26, 10:52 am, Patrick <kc7...@gmail.com> wrote: >> On Oct 25, 2010, at 12:50 PM, Taylor Leese wrote: >> >> >> >>> Hi all, >> >>> I''m new to Puppet and I''m trying to setup a puppet master and a client >>> on Amazon EC2 using Passenger. I''ve gone through the steps described >>> here (http://docs.puppetlabs.com/guides/passenger.html) and here >>> (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, I >>> am still having some issues. >> >>> My Environment: >>> * Amazon EC2 >>> * Puppet 2.6.1 >>> * Passenger 2.2.5 >> >>> Issue #1: >> >>> From the puppet master node you can see below that passenger is >>> running. However, when I run passenger-status it says that it''s not >>> running? Why? >> >>> root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger >>> root 17327 17314 0 19:37 ? 00:00:00 /var/lib/gems/1.8/gems/ >>> passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 /var/lib/ >>> gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ >>> ruby1.8 /tmp/passenger.17294 >>> root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto >>> passenger >>> root@ip-10-162-214-xxx:/var/log/apache2# passenger-status >>> ERROR: Phusion Passenger doesn''t seem to be running. >>> root@ip-10-162-214-xxx:/var/log/apache2# >> >> What distro are you using? >> >> A google search for that got me this message. Any chance it''s applicable? >> >> Message at:http://markmail.org/message/wdue4jfvqdjponha >> >> Quoted below: >> >>>> On Sun, Mar 28, 2010 at 8:50 PM, zdennis <zach...@gmail.com> wrote: >>>> We had a production site which was running on Passenger 2.2.5 and ruby- enterprise-1.8.6-20080810. It''s been running this >>combination for the past several months without issue. >>>> Today, the application went down with the error: uninitialized constant PhusionPassenger::Utils::PseudoIO::StringIO >>> Upgrade to 2.2.11. This bug has been fixed months ago. > > -- > 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. >-- 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.
Patrick, Any idea if people are using versions > 2.2.5 in the wild successfully? I tried to revert back to 2.2.2 previously, but I received a number of compilation errors when running passenger-install- apache2-module so it seems like moving up may be my only option. - Taylor On Oct 26, 12:50 pm, Patrick <kc7...@gmail.com> wrote:> The reason I though it might be the problem is because a lot of people are saying that they got that error after it worked for months. This says to me that their might have been a change to something else that makes 2.2.5 stop working. > > On Oct 26, 2010, at 10:59 AM, Taylor Leese wrote: > > > Patrick, > > > I did run across that thread, but the GitHub site specifically says > > 2.2.5 is known to work (http://github.com/puppetlabs/puppet/tree/ > > master/ext/rack) which made me suspicious that it was my fault. At > > this point I guess there is no harm in trying 2.2.11 (or whatever the > > latest version is). Are people using passenger versions > 2.2.5 with > > success? > > > - Taylor > > > On Oct 26, 10:52 am, Patrick <kc7...@gmail.com> wrote: > >> On Oct 25, 2010, at 12:50 PM, Taylor Leese wrote: > > >>> Hi all, > > >>> I''m new to Puppet and I''m trying to setup a puppet master and a client > >>> on Amazon EC2 using Passenger. I''ve gone through the steps described > >>> here (http://docs.puppetlabs.com/guides/passenger.html) and here > >>> (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, I > >>> am still having some issues. > > >>> My Environment: > >>> * Amazon EC2 > >>> * Puppet 2.6.1 > >>> * Passenger 2.2.5 > > >>> Issue #1: > > >>> From the puppet master node you can see below that passenger is > >>> running. However, when I run passenger-status it says that it''s not > >>> running? Why? > > >>> root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger > >>> root 17327 17314 0 19:37 ? 00:00:00 /var/lib/gems/1.8/gems/ > >>> passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 /var/lib/ > >>> gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ > >>> ruby1.8 /tmp/passenger.17294 > >>> root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto > >>> passenger > >>> root@ip-10-162-214-xxx:/var/log/apache2# passenger-status > >>> ERROR: Phusion Passenger doesn''t seem to be running. > >>> root@ip-10-162-214-xxx:/var/log/apache2# > > >> What distro are you using? > > >> A google search for that got me this message. Any chance it''s applicable? > > >> Message at:http://markmail.org/message/wdue4jfvqdjponha > > >> Quoted below: > > >>>> On Sun, Mar 28, 2010 at 8:50 PM, zdennis <zach...@gmail.com> wrote: > >>>> We had a production site which was running on Passenger 2.2.5 and ruby- enterprise-1.8.6-20080810. It''s been running this >>combination for the past several months without issue. > >>>> Today, the application went down with the error: uninitialized constant PhusionPassenger::Utils::PseudoIO::StringIO > >>> Upgrade to 2.2.11. This bug has been fixed months ago. > > > -- > > 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 athttp://groups.google.com/group/puppet-users?hl=en.-- 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.
Patrick, Any idea if people are using versions > 2.2.5 in the wild successfully? I tried to revert back to 2.2.2 previously, but I received a number of compilation errors when running passenger-install- apache2-module so it seems like moving up may be my only option. - Taylor On Oct 26, 12:50 pm, Patrick <kc7...@gmail.com> wrote:> The reason I though it might be the problem is because a lot of people are saying that they got that error after it worked for months. This says to me that their might have been a change to something else that makes 2.2.5 stop working. > > On Oct 26, 2010, at 10:59 AM, Taylor Leese wrote: > > > Patrick, > > > I did run across that thread, but the GitHub site specifically says > > 2.2.5 is known to work (http://github.com/puppetlabs/puppet/tree/ > > master/ext/rack) which made me suspicious that it was my fault. At > > this point I guess there is no harm in trying 2.2.11 (or whatever the > > latest version is). Are people using passenger versions > 2.2.5 with > > success? > > > - Taylor > > > On Oct 26, 10:52 am, Patrick <kc7...@gmail.com> wrote: > >> On Oct 25, 2010, at 12:50 PM, Taylor Leese wrote: > > >>> Hi all, > > >>> I''m new to Puppet and I''m trying to setup a puppet master and a client > >>> on Amazon EC2 using Passenger. I''ve gone through the steps described > >>> here (http://docs.puppetlabs.com/guides/passenger.html) and here > >>> (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, I > >>> am still having some issues. > > >>> My Environment: > >>> * Amazon EC2 > >>> * Puppet 2.6.1 > >>> * Passenger 2.2.5 > > >>> Issue #1: > > >>> From the puppet master node you can see below that passenger is > >>> running. However, when I run passenger-status it says that it''s not > >>> running? Why? > > >>> root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger > >>> root 17327 17314 0 19:37 ? 00:00:00 /var/lib/gems/1.8/gems/ > >>> passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 /var/lib/ > >>> gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ > >>> ruby1.8 /tmp/passenger.17294 > >>> root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto > >>> passenger > >>> root@ip-10-162-214-xxx:/var/log/apache2# passenger-status > >>> ERROR: Phusion Passenger doesn''t seem to be running. > >>> root@ip-10-162-214-xxx:/var/log/apache2# > > >> What distro are you using? > > >> A google search for that got me this message. Any chance it''s applicable? > > >> Message at:http://markmail.org/message/wdue4jfvqdjponha > > >> Quoted below: > > >>>> On Sun, Mar 28, 2010 at 8:50 PM, zdennis <zach...@gmail.com> wrote: > >>>> We had a production site which was running on Passenger 2.2.5 and ruby- enterprise-1.8.6-20080810. It''s been running this >>combination for the past several months without issue. > >>>> Today, the application went down with the error: uninitialized constant PhusionPassenger::Utils::PseudoIO::StringIO > >>> Upgrade to 2.2.11. This bug has been fixed months ago. > > > -- > > 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 athttp://groups.google.com/group/puppet-users?hl=en.-- 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.
if you are on rhel5, you can use the following rpm - http://theforeman.org/repo/el5/noarch/rubygem-passenger-2.2.2-1.noarch.rpm Ohad On Tue, Oct 26, 2010 at 10:00 PM, Taylor Leese <tleese22@gmail.com> wrote:> Patrick, > > Any idea if people are using versions > 2.2.5 in the wild > successfully? I tried to revert back to 2.2.2 previously, but I > received a number of compilation errors when running passenger-install- > apache2-module so it seems like moving up may be my only option. > > - Taylor > > On Oct 26, 12:50 pm, Patrick <kc7...@gmail.com> wrote: > > The reason I though it might be the problem is because a lot of people > are saying that they got that error after it worked for months. This says > to me that their might have been a change to something else that makes 2.2.5 > stop working. > > > > On Oct 26, 2010, at 10:59 AM, Taylor Leese wrote: > > > > > Patrick, > > > > > I did run across that thread, but the GitHub site specifically says > > > 2.2.5 is known to work (http://github.com/puppetlabs/puppet/tree/ > > > master/ext/rack) which made me suspicious that it was my fault. At > > > this point I guess there is no harm in trying 2.2.11 (or whatever the > > > latest version is). Are people using passenger versions > 2.2.5 with > > > success? > > > > > - Taylor > > > > > On Oct 26, 10:52 am, Patrick <kc7...@gmail.com> wrote: > > >> On Oct 25, 2010, at 12:50 PM, Taylor Leese wrote: > > > > >>> Hi all, > > > > >>> I''m new to Puppet and I''m trying to setup a puppet master and a > client > > >>> on Amazon EC2 using Passenger. I''ve gone through the steps described > > >>> here (http://docs.puppetlabs.com/guides/passenger.html) and here > > >>> (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, > I > > >>> am still having some issues. > > > > >>> My Environment: > > >>> * Amazon EC2 > > >>> * Puppet 2.6.1 > > >>> * Passenger 2.2.5 > > > > >>> Issue #1: > > > > >>> From the puppet master node you can see below that passenger is > > >>> running. However, when I run passenger-status it says that it''s not > > >>> running? Why? > > > > >>> root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger > > >>> root 17327 17314 0 19:37 ? 00:00:00 > /var/lib/gems/1.8/gems/ > > >>> passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 > /var/lib/ > > >>> gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ > > >>> ruby1.8 /tmp/passenger.17294 > > >>> root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto > > >>> passenger > > >>> root@ip-10-162-214-xxx:/var/log/apache2# passenger-status > > >>> ERROR: Phusion Passenger doesn''t seem to be running. > > >>> root@ip-10-162-214-xxx:/var/log/apache2# > > > > >> What distro are you using? > > > > >> A google search for that got me this message. Any chance it''s > applicable? > > > > >> Message at:http://markmail.org/message/wdue4jfvqdjponha > > > > >> Quoted below: > > > > >>>> On Sun, Mar 28, 2010 at 8:50 PM, zdennis <zach...@gmail.com> wrote: > > >>>> We had a production site which was running on Passenger 2.2.5 and > ruby- enterprise-1.8.6-20080810. It''s been running this >>combination for > the past several months without issue. > > >>>> Today, the application went down with the error: uninitialized > constant PhusionPassenger::Utils::PseudoIO::StringIO > > >>> Upgrade to 2.2.11. This bug has been fixed months ago. > > > > > -- > > > 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<puppet-users%2Bunsubscribe@googlegroups.com> > . > > > For more options, visit this group athttp:// > groups.google.com/group/puppet-users?hl=en. > > -- > 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<puppet-users%2Bunsubscribe@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/puppet-users?hl=en. > >-- 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 Oct 26, 2010, at 1:00 PM, Taylor Leese wrote:> Patrick, > > Any idea if people are using versions > 2.2.5 in the wild > successfully? I tried to revert back to 2.2.2 previously, but I > received a number of compilation errors when running passenger-install- > apache2-module so it seems like moving up may be my only option.If you want to do more research, it seems to be related to this: http://code.google.com/p/phusion-passenger/issues/detail?id=398> On Oct 26, 12:50 pm, Patrick <kc7...@gmail.com> wrote: >> The reason I though it might be the problem is because a lot of people are saying that they got that error after it worked for months. This says to me that their might have been a change to something else that makes 2.2.5 stop working. >> >> On Oct 26, 2010, at 10:59 AM, Taylor Leese wrote: >> >>> Patrick, >> >>> I did run across that thread, but the GitHub site specifically says >>> 2.2.5 is known to work (http://github.com/puppetlabs/puppet/tree/ >>> master/ext/rack) which made me suspicious that it was my fault. At >>> this point I guess there is no harm in trying 2.2.11 (or whatever the >>> latest version is). Are people using passenger versions > 2.2.5 with >>> success? >> >>> - Taylor >> >>> On Oct 26, 10:52 am, Patrick <kc7...@gmail.com> wrote: >>>> On Oct 25, 2010, at 12:50 PM, Taylor Leese wrote: >> >>>>> Hi all, >> >>>>> I''m new to Puppet and I''m trying to setup a puppet master and a client >>>>> on Amazon EC2 using Passenger. I''ve gone through the steps described >>>>> here (http://docs.puppetlabs.com/guides/passenger.html) and here >>>>> (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, I >>>>> am still having some issues. >> >>>>> My Environment: >>>>> * Amazon EC2 >>>>> * Puppet 2.6.1 >>>>> * Passenger 2.2.5 >> >>>>> Issue #1: >> >>>>> From the puppet master node you can see below that passenger is >>>>> running. However, when I run passenger-status it says that it''s not >>>>> running? Why? >> >>>>> root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger >>>>> root 17327 17314 0 19:37 ? 00:00:00 /var/lib/gems/1.8/gems/ >>>>> passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 /var/lib/ >>>>> gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ >>>>> ruby1.8 /tmp/passenger.17294 >>>>> root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto >>>>> passenger >>>>> root@ip-10-162-214-xxx:/var/log/apache2# passenger-status >>>>> ERROR: Phusion Passenger doesn''t seem to be running. >>>>> root@ip-10-162-214-xxx:/var/log/apache2# >> >>>> What distro are you using? >> >>>> A google search for that got me this message. Any chance it''s applicable? >> >>>> Message at:http://markmail.org/message/wdue4jfvqdjponha >> >>>> Quoted below: >> >>>>>> On Sun, Mar 28, 2010 at 8:50 PM, zdennis <zach...@gmail.com> wrote: >>>>>> We had a production site which was running on Passenger 2.2.5 and ruby- enterprise-1.8.6-20080810. It''s been running this >>combination for the past several months without issue. >>>>>> Today, the application went down with the error: uninitialized constant PhusionPassenger::Utils::PseudoIO::StringIO >>>>> Upgrade to 2.2.11. This bug has been fixed months ago. >> >>> -- >>> 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 athttp://groups.google.com/group/puppet-users?hl=en. > > -- > 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. >-- 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.
@Patrick - Thanks. I will try a newer version of passenger later tonight. @Ohad - I''m actually using Ubuntu Maverick. On Oct 26, 1:11 pm, Patrick <kc7...@gmail.com> wrote:> On Oct 26, 2010, at 1:00 PM, Taylor Leese wrote: > > > Patrick, > > > Any idea if people are using versions > 2.2.5 in the wild > > successfully? I tried to revert back to 2.2.2 previously, but I > > received a number of compilation errors when running passenger-install- > > apache2-module so it seems like moving up may be my only option. > > If you want to do more research, it seems to be related to this:http://code.google.com/p/phusion-passenger/issues/detail?id=398 > > > On Oct 26, 12:50 pm, Patrick <kc7...@gmail.com> wrote: > >> The reason I though it might be the problem is because a lot of people are saying that they got that error after it worked for months. This says to me that their might have been a change to something else that makes 2.2.5 stop working. > > >> On Oct 26, 2010, at 10:59 AM, Taylor Leese wrote: > > >>> Patrick, > > >>> I did run across that thread, but the GitHub site specifically says > >>> 2.2.5 is known to work (http://github.com/puppetlabs/puppet/tree/ > >>> master/ext/rack) which made me suspicious that it was my fault. At > >>> this point I guess there is no harm in trying 2.2.11 (or whatever the > >>> latest version is). Are people using passenger versions > 2.2.5 with > >>> success? > > >>> - Taylor > > >>> On Oct 26, 10:52 am, Patrick <kc7...@gmail.com> wrote: > >>>> On Oct 25, 2010, at 12:50 PM, Taylor Leese wrote: > > >>>>> Hi all, > > >>>>> I''m new to Puppet and I''m trying to setup a puppet master and a client > >>>>> on Amazon EC2 using Passenger. I''ve gone through the steps described > >>>>> here (http://docs.puppetlabs.com/guides/passenger.html) and here > >>>>> (http://github.com/puppetlabs/puppet/tree/master/ext/rack). However, I > >>>>> am still having some issues. > > >>>>> My Environment: > >>>>> * Amazon EC2 > >>>>> * Puppet 2.6.1 > >>>>> * Passenger 2.2.5 > > >>>>> Issue #1: > > >>>>> From the puppet master node you can see below that passenger is > >>>>> running. However, when I run passenger-status it says that it''s not > >>>>> running? Why? > > >>>>> root@ip-10-162-214-xxx:/var/log/apache2# ps -ef | grep passenger > >>>>> root 17327 17314 0 19:37 ? 00:00:00 /var/lib/gems/1.8/gems/ > >>>>> passenger-2.2.5/ext/apache2/ApplicationPoolServerExecutable 0 /var/lib/ > >>>>> gems/1.8/gems/passenger-2.2.5/bin/passenger-spawn-server /usr/bin/ > >>>>> ruby1.8 /tmp/passenger.17294 > >>>>> root 17422 13196 0 19:38 pts/0 00:00:00 grep --color=auto > >>>>> passenger > >>>>> root@ip-10-162-214-xxx:/var/log/apache2# passenger-status > >>>>> ERROR: Phusion Passenger doesn''t seem to be running. > >>>>> root@ip-10-162-214-xxx:/var/log/apache2# > > >>>> What distro are you using? > > >>>> A google search for that got me this message. Any chance it''s applicable? > > >>>> Message at:http://markmail.org/message/wdue4jfvqdjponha > > >>>> Quoted below: > > >>>>>> On Sun, Mar 28, 2010 at 8:50 PM, zdennis <zach...@gmail.com> wrote: > >>>>>> We had a production site which was running on Passenger 2.2.5 and ruby- enterprise-1.8.6-20080810. It''s been running this >>combination for the past several months without issue. > >>>>>> Today, the application went down with the error: uninitialized constant PhusionPassenger::Utils::PseudoIO::StringIO > >>>>> Upgrade to 2.2.11. This bug has been fixed months ago. > > >>> -- > >>> 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 athttp://groups.google.com/group/puppet-users?hl=en. > > > -- > > 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 athttp://groups.google.com/group/puppet-users?hl=en.-- 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.
Hi, Excerpts from Taylor Leese''s message of Tue Oct 26 16:31:04 -0400 2010:> > @Ohad - I''m actually using Ubuntu Maverick. >If you''re using Ubuntu Maverick I''d highly recommend to use the puppetmaster-passenger package. It will automatically install and setup a puppet master running under apache2 and passenger. No further configuration is required. -- Mathias Gug Ubuntu Developer http://www.ubuntu.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.
On Oct 26, 1:00 pm, Taylor Leese <tlees...@gmail.com> wrote:> Patrick, > > Any idea if people are using versions > 2.2.5 in the wild > successfully? I tried to revert back to 2.2.2 previously, but I > received a number of compilation errors when running passenger-install- > apache2-module so it seems like moving up may be my only option.I am using 2.2.15 without issue on around 1000 nodes. -Andrew -- 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.
Mathias - Really? That''s awesome. I didn''t realize that existed. I will check it out. Thanks. On Oct 26, 1:38 pm, Mathias Gug <math...@ubuntu.com> wrote:> Hi, > > Excerpts from Taylor Leese''s message of Tue Oct 26 16:31:04 -0400 2010: > > > > > @Ohad - I''m actually using Ubuntu Maverick. > > If you''re using Ubuntu Maverick I''d highly recommend to use the > puppetmaster-passenger package. It will automatically install and setup > a puppet master running under apache2 and passenger. No further > configuration is required. > > -- > Mathias Gug > Ubuntu Developer http://www.ubuntu.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.
Mathias, if the none passenger version was install, what do one need to do to switch ? apt-get remove and then apt-get install or will a apt-get-install replace the current none passenger version? Thanks On Tue, Oct 26, 2010 at 1:38 PM, Mathias Gug <mathiaz@ubuntu.com> wrote:> Hi, > > Excerpts from Taylor Leese''s message of Tue Oct 26 16:31:04 -0400 2010: > > > > @Ohad - I''m actually using Ubuntu Maverick. > > > > If you''re using Ubuntu Maverick I''d highly recommend to use the > puppetmaster-passenger package. It will automatically install and setup > a puppet master running under apache2 and passenger. No further > configuration is required. > > -- > Mathias Gug > Ubuntu Developer http://www.ubuntu.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<puppet-users%2Bunsubscribe@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/puppet-users?hl=en. > >-- -ls -- 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.
I love this package, but I had some conflicts with my existing puppetmaster configuration. This is what I did (probably very overkill) that fixed all the conflicts. I haven''t had this trouble with new servers. I''ve only had this problem with servers that had puppet+passenger configured manually. If feasible, you should do this before installing: Uninstall all gems that you installed manually with the "gem" command. Backup /etc/puppet and /var/lib/puppet just in case. Move (not copy) your /etc/puppet/puppet.conf to a safe location. (Like /root/whatever) Remove any files you created for puppet that are in /etc/apache2/mods-* and /etc/apache2/sites-* Purge the existing version of the passenger deb. After install: Merge your existing /etc/puppet/puppet.conf with your backup. On Oct 26, 2010, at 2:01 PM, Luc Suryo wrote:> Mathias, > > if the none passenger version was install, what do one need to do to switch ? > apt-get remove and then apt-get install or will a apt-get-install replace the current none > passenger version? > > Thanks > > On Tue, Oct 26, 2010 at 1:38 PM, Mathias Gug <mathiaz@ubuntu.com> wrote: > Hi, > > Excerpts from Taylor Leese''s message of Tue Oct 26 16:31:04 -0400 2010: > > > > @Ohad - I''m actually using Ubuntu Maverick. > > > > If you''re using Ubuntu Maverick I''d highly recommend to use the > puppetmaster-passenger package. It will automatically install and setup > a puppet master running under apache2 and passenger. No further > configuration is required. > > -- > Mathias Gug > Ubuntu Developer http://www.ubuntu.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. > > > > > -- > -ls > > -- > 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.-- 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.
Mathias - The package you mentioned (puppetmaster-passenger) worked perfectly for me on the first try. That saved me a ton of time. Thanks! On Oct 26, 1:38 pm, Mathias Gug <math...@ubuntu.com> wrote:> Hi, > > Excerpts from Taylor Leese''s message of Tue Oct 26 16:31:04 -0400 2010: > > > > > @Ohad - I''m actually using Ubuntu Maverick. > > If you''re using Ubuntu Maverick I''d highly recommend to use the > puppetmaster-passenger package. It will automatically install and setup > a puppet master running under apache2 and passenger. No further > configuration is required. > > -- > Mathias Gug > Ubuntu Developer http://www.ubuntu.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.
yes, that is the method I had in mind too :) better be save then sorry Thanks! On Tue, Oct 26, 2010 at 4:50 PM, Patrick <kc7zzv@gmail.com> wrote:> I love this package, but I had some conflicts with my existing puppetmaster > configuration. This is what I did (probably very overkill) that fixed all > the conflicts. I haven''t had this trouble with new servers. I''ve only had > this problem with servers that had puppet+passenger configured manually. > > > If feasible, you should do this before installing: > Uninstall all gems that you installed manually with the "gem" command. > Backup /etc/puppet and /var/lib/puppet just in case. > Move (not copy) your /etc/puppet/puppet.conf to a safe location. (Like > /root/whatever) > Remove any files you created for puppet that are in /etc/apache2/mods-* > and /etc/apache2/sites-* > Purge the existing version of the passenger deb. > > After install: > Merge your existing /etc/puppet/puppet.conf with your backup. > > > > On Oct 26, 2010, at 2:01 PM, Luc Suryo wrote: > > Mathias, > > if the none passenger version was install, what do one need to do to switch > ? > apt-get remove and then apt-get install or will a apt-get-install replace > the current none > passenger version? > > Thanks > > On Tue, Oct 26, 2010 at 1:38 PM, Mathias Gug <mathiaz@ubuntu.com> wrote: > >> Hi, >> >> Excerpts from Taylor Leese''s message of Tue Oct 26 16:31:04 -0400 2010: >> > >> > @Ohad - I''m actually using Ubuntu Maverick. >> > >> >> If you''re using Ubuntu Maverick I''d highly recommend to use the >> puppetmaster-passenger package. It will automatically install and setup >> a puppet master running under apache2 and passenger. No further >> configuration is required. >> >> -- >> Mathias Gug >> Ubuntu Developer http://www.ubuntu.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<puppet-users%2Bunsubscribe@googlegroups.com> >> . >> For more options, visit this group at >> http://groups.google.com/group/puppet-users?hl=en. >> >> > > > -- > -ls > > -- > 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. > > > -- > 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<puppet-users%2Bunsubscribe@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/puppet-users?hl=en. >-- -ls -- 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 10/26/2010 10:46 PM, Andrew Forgue wrote:> On Oct 26, 1:00 pm, Taylor Leese <tlees...@gmail.com> wrote: >> Patrick, >> >> Any idea if people are using versions > 2.2.5 in the wild >> successfully? I tried to revert back to 2.2.2 previously, but I >> received a number of compilation errors when running passenger-install- >> apache2-module so it seems like moving up may be my only option. > > I am using 2.2.15 without issue on around 1000 nodes. > > -Andrew >I''m not managing our master, but this is what''s running on top of puppetmaster 0.25.5: libapache2-mod-passenger 2.2.11debian-1~bpo50+1 It''s sort of recent, but no problems so far. About 200 Clients. -- 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.