Cannot connect puppet agent to puppet master
Posted
by
u123
on Server Fault
See other posts from Server Fault
or by u123
Published on 2013-11-03T15:12:44Z
Indexed on
2013/11/03
15:56 UTC
Read the original article
Hit count: 359
I have installed puppet 3.3.1 on a debian 7 machine (test-puppet-master) and the puppet agent on another debian 7 machine (test-puppet-agent/192.11.80.246) acting as a client. I start the master with:
puppet master --verbose --no-daemonize
And I start the agent with:
puppet agent --server=test-puppet-master --no-daemonize --verbose
Notice: Did not receive certificate
which gives the following output on the master:
Notice: Starting Puppet master version 3.3.1
Error: Could not resolve 192.11.80.246: no name for 192.11.80.246
Info: Inserting default '~ ^/catalog/([^/]+)$' (auth true) ACL
Info: Inserting default '~ ^/node/([^/]+)$' (auth true) ACL
Info: Inserting default '/file' (auth ) ACL
Info: Inserting default '/certificate_revocation_list/ca' (auth true) ACL
Info: Inserting default '~ ^/report/([^/]+)$' (auth true) ACL
Info: Inserting default '/certificate/ca' (auth any) ACL
Info: Inserting default '/certificate/' (auth any) ACL
Info: Inserting default '/certificate_request' (auth any) ACL
Info: Inserting default '/status' (auth true) ACL
Info: Not Found: Could not find certificate test-puppet-agent
Error: Could not resolve 192.11.80.246: no name for 192.11.80.246
Info: Not Found: Could not find certificate test-puppet-agent
Error: Could not resolve 192.11.80.246: no name for 192.11.80.246
Info: Not Found: Could not find certificate test-puppet-agent
Any ideas why the agent cannot connect?
© Server Fault or respective owner