Hi all, I am new to Puppet and now I do some test with 2 Virtual Machines running Centos 6.4 and puppet 3.3.1 And I manage to sign the client cert, but still I can not get any file updated on the client VM. If I run the client in test mode puppet agent --server=p-master.localdomain --noop --test There is no errors in the output. Info: Retrieving plugin Info: Caching catalog for p-slave.localdomain Info: Applying configuration version ''1383222253'' Notice: Finished catalog run in 0.03 seconds All logs seems clean and the only suspicious thing is in the /var/log/puppet/masterhttp.log: DEBUG Puppet::Network::HTTP::WEBrickREST is invoked. What does "WEBrickREST is invoked." means and is this my problem of not updating the client. Thanks in advance Valentin Todorov -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/a35e320a-94a4-4303-a8fb-34d74f7fc123%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Seems everything is ok. Have you already made your first manifest ? http://docs.puppetlabs.com/learning/manifests.html On 10/31/2013 10:39 AM, Valentin Todorov wrote:> Hi all, > > I am new to Puppet and now I do some test with 2 Virtual Machines > running Centos 6.4 and puppet 3.3.1 > And I manage to sign the client cert, but still I can not get any file > updated on the client VM. > > If I run the client in test mode puppet agent > --server=p-master.localdomain --noop --test There is no errors in the > output. > Info: Retrieving plugin > Info: Caching catalog for p-slave.localdomain > Info: Applying configuration version ''1383222253'' > Notice: Finished catalog run in 0.03 seconds > > All logs seems clean and the only suspicious thing is in > the /var/log/puppet/masterhttp.log: > > DEBUG Puppet::Network::HTTP::WEBrickREST is invoked. > > What does "WEBrickREST is invoked." means and is this my problem of > not updating the client. > > Thanks in advance > > Valentin Todorov > -- > You received this message because you are subscribed to the Google > Groups "Puppet Users" group. > To unsubscribe from this group and stop receiving emails from it, send > an email to puppet-users+unsubscribe@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/puppet-users/a35e320a-94a4-4303-a8fb-34d74f7fc123%40googlegroups.com. > For more options, visit https://groups.google.com/groups/opt_out.-- Johan De Wit Open Source Consultant Red Hat Certified Engineer (805008667232363) Puppet Certified Professional 2013 (PCP0000006) _________________________________________________________ Open-Future Phone +32 (0)2/255 70 70 Zavelstraat 72 Fax +32 (0)2/255 70 71 3071 KORTENBERG Mobile +32 (0)474/42 40 73 BELGIUM http://www.open-future.be _________________________________________________________ Next Events: Puppet Advanced Training | https://www.open-future.be/puppet-advanced-training-12-till-14th-november Zabbix Certified Training | http://www.open-future.be/zabbix-certified-training-18-till-20th-november Zabbix Large Environments Training | http://www.open-future.be/zabbix-large-environments-training-21-till-22nd-november Puppet Fundamentals Training | http://www.open-future.be/puppet-fundamentals-training-10-till-12th-december Subscribe to our newsletter | http://eepurl.com/BUG8H -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/52726248.4000805%40open-future.be. For more options, visit https://groups.google.com/groups/opt_out.
On Thursday, October 31, 2013 4:39:15 AM UTC-5, Valentin Todorov wrote:> > Hi all, > > I am new to Puppet and now I do some test with 2 Virtual Machines running > Centos 6.4 and puppet 3.3.1 > And I manage to sign the client cert, but still I can not get any file > updated on the client VM. > > If I run the client in test mode puppet agent > --server=p-master.localdomain --noop --test There is no errors in the > output. > Info: Retrieving plugin > Info: Caching catalog for p-slave.localdomain > Info: Applying configuration version ''1383222253'' > Notice: Finished catalog run in 0.03 seconds > > All logs seems clean and the only suspicious thing is in > the /var/log/puppet/masterhttp.log: > > DEBUG Puppet::Network::HTTP::WEBrickREST is invoked. > > What does "WEBrickREST is invoked." means and is this my problem of not > updating the client. > >It means that something invoked Puppet''s built-in REST interface. It probably reflects ordinary operation (and note that it is only a DEBUG-level message). Your symptoms appear to indicate that the client is receiving an empty catalog. Do you have reason to expect different? In particular, do not be confused about Puppet modules: installing a module on the master makes it * available* to be used to configure clients, but does not in itself *cause*it to be used. You must still tell the master what to apply to each client. The quickest way to do that is via one or more node declarations in, or imported by, your site.pp manifest: http://docs.puppetlabs.com/learning/agent_master_basic.html#node-definitions . John -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/1719bf49-356c-4d88-b7e7-8932619f2690%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.