hi, i m new for puppet and configured with LDAP.........tring to push configuration through puppetrun.... and done opening of port 8140 : on master 8139 : on client on client with ... $ iptables -I INPUT 1 -p tcp --dport 8139 -j ACCEPT $ /etc/init.d/iptables save $ /etc/init.d/iptables restart and had changed in /etc/puppet/puppet.conf at client...... [puppetd] listen = true and had changed in /etc/puppet/namespaceauth.conf at client...... [puppetrunner] allow * and had run puppetd with... on client .... $ puppetd --test --debug --listen and running puppetrun on master $ puppetrun --class app-1288002665 Triggering app-1288002665.puppet.com Host app-1288002665.puppet.com failed: Could not connect to app-1288002665.puppet.com on port 8139 app-1288002665.puppet.com finished with exit code 2 Failed: app-1288002665.puppet.com and when i tried .... $ puppetrun --all all: tomcatServer.puppet.com, webServer.puppet.com, cassandraServer.puppet.com, rabbitMQServer.puppet.com, app-1288002665.puppet.com, app-1288002665-server.puppet.com Triggering tomcatServer.puppet.com Host tomcatServer.puppet.com failed: Could not find server tomcatServer.puppet.com tomcatServer.puppet.com finished with exit code 2 Triggering webServer.puppet.com Host webServer.puppet.com failed: Could not find server webServer.puppet.com webServer.puppet.com finished with exit code 2 Triggering cassandraServer.puppet.com Host cassandraServer.puppet.com failed: Could not find server cassandraServer.puppet.com cassandraServer.puppet.com finished with exit code 2 Triggering rabbitMQServer.puppet.com Host rabbitMQServer.puppet.com failed: Could not find server rabbitMQServer.puppet.com rabbitMQServer.puppet.com finished with exit code 2 Triggering app-1288002665.puppet.com Host app-1288002665.puppet.com failed: Could not connect to app-1288002665.puppet.com on port 8139 app-1288002665.puppet.com finished with exit code 2 Triggering app-1288002665-server.puppet.com Host app-1288002665-server.puppet.com failed: Could not find server app-1288002665-server.puppet.com app-1288002665-server.puppet.com finished with exit code 2 Failed: tomcatServer.puppet.com, webServer.puppet.com, cassandraServer.puppet.com, rabbitMQServer.puppet.com, app-1288002665.puppet.com, app-1288002665-server.puppet.com my problem : 1) What is exactly problem with puppetrun ? 2) why is ruppetrun not able to connect to client at port 8139 ? -- 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, On Wed, Oct 27, 2010 at 11:17 AM, sanjiv.singh <sanjiv.singh@impetus.co.in>wrote:> > 1) What is exactly problem with puppetrun ? > 2) why is ruppetrun not able to connect to client at port 8139 ?If this is on 2.6.x, then you need to modify auth.conf. -- 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.
Hello everyone I looked online, but didn''t see any solution to the problem of /var/lib/puppet/clientbucket filling up. After a while that directory is getting very big, 3-4gigs. I have to shutdown puppet and remove everything. Is there a way to either limit the size of this directory, or better yet make sure that it isn''t filling constantly? I am running puppet version 0.25.4 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.
On Tue, Oct 26, 2010 at 11:30 PM, Marek Dohojda <chrobry@gmail.com> wrote:> > Hello everyone > > I looked online, but didn''t see any solution to the problem of > /var/lib/puppet/clientbucket filling up. > > After a while that directory is getting very big, 3-4gigs. I have to > shutdown puppet and remove everything. > > Is there a way to either limit the size of this directory, or better yet > make sure that it isn''t filling constantly? >Do you actually have a need to use the filebucked on the client? You can disabling backups for any individual file resource with: file { "/foo/bar": backup => false, } and many people in fact set this with a global resource default, and explicitly backup files they care about by setting backup to true for those individual resources, like: File { backup => false, } file { "/etc/important-file": backup => true, } http://docs.puppetlabs.com/guides/language_tutorial.html#resource_defaults You could also choose to use the tidy resource type to manage the bucket itself. http://docs.puppetlabs.com/guides/types/tidy.html> > I am running puppet version 0.25.4 > > 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<puppet-users%2Bunsubscribe@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/puppet-users?hl=en. >-- Nigel Kersten Product Manager, Puppet Labs http://www.puppetlabs.com Twitter: @nigelkersten -- 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 so much! That works great. I do not need a backup at all. From: Nigel Kersten Sent: Wednesday, October 27, 2010 8:41 AM To: puppet-users@googlegroups.com Subject: Re: [Puppet Users] /var/lib/puppet/clientbucket On Tue, Oct 26, 2010 at 11:30 PM, Marek Dohojda <chrobry@gmail.com> wrote: Hello everyone I looked online, but didn''t see any solution to the problem of /var/lib/puppet/clientbucket filling up. After a while that directory is getting very big, 3-4gigs. I have to shutdown puppet and remove everything. Is there a way to either limit the size of this directory, or better yet make sure that it isn''t filling constantly? Do you actually have a need to use the filebucked on the client? You can disabling backups for any individual file resource with: file { "/foo/bar": backup => false, } and many people in fact set this with a global resource default, and explicitly backup files they care about by setting backup to true for those individual resources, like: File { backup => false, } file { "/etc/important-file": backup => true, } http://docs.puppetlabs.com/guides/language_tutorial.html#resource_defaults You could also choose to use the tidy resource type to manage the bucket itself. http://docs.puppetlabs.com/guides/types/tidy.html I am running puppet version 0.25.4 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. -- Nigel Kersten Product Manager, Puppet Labs http://www.puppetlabs.com Twitter: @nigelkersten -- 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.