I''m trying to set up a puppet master on ubuntu 10.10 and client on windows 7. Running ''puppet agent -verbose'' on the client, I get this: warning: peer certificate won''t be verified in this SSL session notice: Did not receive certificate which seems to be expected. When I check the server, the masterhttp log has this: [2012-01-10 09:17:03] - -> /production/certificate/MYCLIENT.com? [2012-01-10 09:17:03] MYCLIENT.com - - [10/Jan/2012:09:17:03 PST] "GET /production/certificate/MYCLIENT.com? HTTP/1.1" 404 55 so the client request is getting to puppet''s http server, but there are no certificate requests waiting to be signed. ''puppetca -l'' brings back no results. ''puppet cert --list'' gives this: $ puppet cert --list Could not parse for environment production: Could not find file /etc/ puppet/cert.pp Am I missing some part of the server configuration? Thanks -- 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.
> $ puppet cert --list > Could not parse for environment production: Could not find file /etc/ > puppet/cert.pp > > Am I missing some part of the server configuration?The command you are running is for puppet 2.x The error you are getting is a typical reaction of puppet 0.x Check it with dpkg -l | grep puppet Then proceed to update puppet by editing the /etc/apt/sources.list, uncommenting the maverick-backports then apt-get update, apt-get -t maverick-backports install puppet puppetmaster Your puppet should be updated to 2.6.x You may not want to use ubuntu 10.10 in a server : it is not updated/ supported anymore. Actually, I would strongly advise against using anything but the LTS releases for servers : 10.04 LTS / lucid right now 12.04 LTS as soon as it is released, in April 2012. Cheers Patrick Viet -- 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! On Jan 10, 4:47 pm, Patrick Viet <patrick.v...@learnosity.com> wrote:> > $ puppet cert --list > > Could not parse for environment production: Could not find file /etc/ > > puppet/cert.pp > > > Am I missing some part of the server configuration? > > The command you are running is for puppet 2.x > The error you are getting is a typical reaction of puppet 0.x > Check it with dpkg -l | grep puppet > > Then proceed to update puppet by editing the /etc/apt/sources.list, > uncommenting the maverick-backports > then apt-get update, apt-get -t maverick-backports install puppet > puppetmaster > Your puppet should be updated to 2.6.x > > You may not want to use ubuntu 10.10 in a server : it is not updated/ > supported anymore. > Actually, I would strongly advise against using anything but the LTS > releases for servers : > 10.04 LTS / lucid right now > 12.04 LTS as soon as it is released, in April 2012. > > Cheers > > Patrick Viet-- 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.