On Wednesday, December 19, 2012 5:47:50 AM UTC-6, krishna bhaskara rao 
wrote:
>
> Hi,
>
> I installed Open source puppet 3.0 .1in Windows machine and puppet master 
> 3.0.1 in red hat linux machine. I did all the necessary configurations.
> C:\Documents and Settings\All Users\Application 
> Data\PuppetLabs\puppet\etc\puppet.conf- > server = test.posmaster.internal
> Added entry in hosts file.
>
> While execute ping command ping (ping test.posmaster.internal) giving 
> response.
> But while executing "puppet agent --server test.posmaster.internal 
> --debug" I am getting below error
>
> *Info: Retrieving plugin*
> *Error: Could not retrieve catalog from remote server: Error 400 on 
> SERVER: Could*
> * not find default node or by name with 
> 'testposagentoneinternal.ec2.internal, te*
> *stposagentoneinternal.ec2, testposagentoneinternal' on node 
> testposagentoneinter*
> *nal.ec2.internal*
> *Warning: Not using cache on failed catalog*
> *Error: Could not retrieve catalog; skipping run*
> *
> *
> Please help me to solve this.
>
>
Puppet is telling you that it cannot match the client to any node it knows 
about, and you have not declared default node configuration for it to fall 
back on.  Consult the Puppet language docs for full details 
(http://docs.puppetlabs.com/puppet/3/reference/lang_node_definitions.html), 
but the quickest, simplest (but most temporary) solution is to add this to 
your site.pp:

node default {
}

Note that although that should silence the error message, it does not 
declare any classes or resources to apply to your nodes.  Do digest the 
node (and other) documentation to understand how to go on from there.


John

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/puppet-users/-/ZNlPJZoYSAgJ.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to