Hi Everyone; I am new to puppet and would SO appreciate any help you might be able to provide! I am attempting to configure Passenger. I have followed all of the installation instructions but, when I restart my webserver, it does not start the puppetmaster nor does it throw any errors. So, I am not even sure where to begin to look. Also, some of the documentation refers to the puppetmaster.conf file. I am not sure what this is. I have only a puppet.conf file on the puppetmaster which contains the required entries for the master. Am I missing something here? Any help you could provide would be so greatly appreciated. Thank you! -- 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.
http://apt.puppetlabs.com/ Use that and then "apt-get install puppetmaster-passenger". (There''s a yum repository too.) Then you can crib from those configs. On Fri, Apr 06, 2012 at 05:45:39PM -0700, Jax01 wrote:> Hi Everyone; > > I am new to puppet and would SO appreciate any help you might be able > to provide! > > I am attempting to configure Passenger. I have followed all of the > installation instructions but, when I restart my webserver, it does > not start the puppetmaster nor does it throw any errors. So, I am not > even sure where to begin to look. > > Also, some of the documentation refers to the puppetmaster.conf file. > I am not sure what this is. I have only a puppet.conf file on the > puppetmaster which contains the required entries for the master. Am I > missing something here? > > Any help you could provide would be so greatly appreciated. > > Thank you! > > -- > 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.
On 12-04-07 10:43 AM, Christopher Wood wrote:> http://apt.puppetlabs.com/ > > Use that and then "apt-get install puppetmaster-passenger". (There''s a yum repository too.) Then you can crib from those configs.oh, interesting, I didnt'' know about this one.. and it''s available in squeeze-backports, too: http://packages.debian.org/squeeze-backports/puppetmaster-passenger Jax01: if you''d still like to try it out the long way (and thus understand what''s happening), you can follow that doc: http://projects.puppetlabs.com/projects/puppet/wiki/Using_Passenger hopefully it''s still all applicable as-is to puppet 2.6 and 2.7 (most of it should be..) generally, for debian you apt-get install apache2 libapache2-mod-passenger and rails, then you setup your apache virtualhost file to trigger passenger, and finally, there''s one config file for passenger to know where to find puppet''s main executable and librairies. also, the puppet master configuration file is named puppet.conf, too. there''s only a section more in there giving setup info about the master. in puppet 2.6+ this section is called "[master]". see: http://docs.puppetlabs.com/guides/configuring.html hth.> On Fri, Apr 06, 2012 at 05:45:39PM -0700, Jax01 wrote: >> Hi Everyone; >> >> I am new to puppet and would SO appreciate any help you might be able >> to provide! >> >> I am attempting to configure Passenger. I have followed all of the >> installation instructions but, when I restart my webserver, it does >> not start the puppetmaster nor does it throw any errors. So, I am not >> even sure where to begin to look. >> >> Also, some of the documentation refers to the puppetmaster.conf file. >> I am not sure what this is. I have only a puppet.conf file on the >> puppetmaster which contains the required entries for the master. Am I >> missing something here? >> >> Any help you could provide would be so greatly appreciated. >> >> Thank you! >> >> -- >> 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. >> >> >-- Gabriel Filion -- 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 Jax, On 07.04.2012, at 02:45, Jax01 <atkins.jackie@gmail.com> wrote:> I am attempting to configure Passenger. I have followed all of the > installation instructions but, when I restart my webserver, it does > not start the puppetmaster nor does it throw any errors. So, I am not > even sure where to begin to look.You can check my blog post, which describes the installation on Debian squeeze: http://sts.ono.at/blog/2010/08/31/debian-puppet-passenger Basically: * compare your puppet config against the one in my blog post * check you syslog and apache error log * Try to add a debug option to the config.ru file: ARGV << ''-d''> Also, some of the documentation refers to the puppetmaster.conf file. > I am not sure what this is. I have only a puppet.conf file on the > puppetmaster which contains the required entries for the master. Am I > missing something here?No. Thats the correct one. -- 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 Everyone; Thanks for your help! However, I am still not able to get this working. I am using RHEL6 and the instructions are not clear to me. Can anyone shed some light on installing this on RHEL6? It seems that the instructions on the puppet site are a bit outdated. Thanks! On Sun, Apr 8, 2012 at 3:20 AM, Stefan Schlesinger <sts@ono.at> wrote:> Hi Jax, > > On 07.04.2012, at 02:45, Jax01 <atkins.jackie@gmail.com> wrote: >> I am attempting to configure Passenger. I have followed all of the >> installation instructions but, when I restart my webserver, it does >> not start the puppetmaster nor does it throw any errors. So, I am not >> even sure where to begin to look. > > You can check my blog post, which describes the installation on Debian squeeze: > > http://sts.ono.at/blog/2010/08/31/debian-puppet-passenger > > > Basically: > > * compare your puppet config against the one in my blog post > > * check you syslog and apache error log > > * Try to add a debug option to the config.ru file: ARGV << ''-d'' > > >> Also, some of the documentation refers to the puppetmaster.conf file. >> I am not sure what this is. I have only a puppet.conf file on the >> puppetmaster which contains the required entries for the master. Am I >> missing something here? > > No. Thats the correct one. > > -- > 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. >-- Jacqueline G. Atkins "To whom much is given, much will be required..." Luke 12:48 "“People, even more than things, have to be restored, renewed, revived, reclaimed, and redeemed; never throw out anyone.” Audrey Hepburn "....I am not going to be unnecessarily buoyed or depressed by someone else''s experience. I have my own fight to fight" ..... Elizabeth Edwards -- 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.
Stefan, thanks for the link to your blog! Most helpful! On Sun, Apr 8, 2012 at 3:20 AM, Stefan Schlesinger <sts@ono.at> wrote:> Hi Jax, > > On 07.04.2012, at 02:45, Jax01 <atkins.jackie@gmail.com> wrote: >> I am attempting to configure Passenger. I have followed all of the >> installation instructions but, when I restart my webserver, it does >> not start the puppetmaster nor does it throw any errors. So, I am not >> even sure where to begin to look. > > You can check my blog post, which describes the installation on Debian squeeze: > > http://sts.ono.at/blog/2010/08/31/debian-puppet-passenger > > > Basically: > > * compare your puppet config against the one in my blog post > > * check you syslog and apache error log > > * Try to add a debug option to the config.ru file: ARGV << ''-d'' > > >> Also, some of the documentation refers to the puppetmaster.conf file. >> I am not sure what this is. I have only a puppet.conf file on the >> puppetmaster which contains the required entries for the master. Am I >> missing something here? > > No. Thats the correct one. > > -- > 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. >-- Jacqueline G. Atkins "To whom much is given, much will be required..." Luke 12:48 "“People, even more than things, have to be restored, renewed, revived, reclaimed, and redeemed; never throw out anyone.” Audrey Hepburn "....I am not going to be unnecessarily buoyed or depressed by someone else''s experience. I have my own fight to fight" ..... Elizabeth Edwards -- 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.