简体   繁体   中英

Error 400 on puppet SERVER

On agent node:

root@agent2-VirtualBox:/var/lib/puppet# puppet agent -t
Info: Retrieving pluginfacts
Info: Retrieving plugin
Info: Loading facts
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find default node or by name with 'agent2-virtualbox.servicemesh.com, agent2-virtualbox.servicemesh, agent2-virtualbox, agent2-VirtualBox.servicemesh.com, agent2-VirtualBox.servicemesh, agent2-VirtualBox' on node agent2-virtualbox.servicemesh.com
Warning: Not using cache on failed catalog
Error: Could not retrieve catalog; skipping run
root@agent2-VirtualBox:/var/lib/puppet#

On the puppet master side:

root@puppetmaster:~# puppet cert sign --all
Error: No waiting certificate requests to sign
root@puppetmaster:~#

How to resolve this?

You need to check you site.pp and make sure you either have a default node definition defined or a node definition for the FQDN of your agent.

https://docs.puppet.com/puppet/latest/reference/lang_node_definitions.html

for example:

node 'agent2-virtualbox.servicemesh.com' {
  import ntp
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM