Lots of things changed on centos7 and it doenst log all details in /var/log/messages. You have to use journeling for puppet logs.
Tail : journalctl -f -u pe-puppet
Full: journalctl -l -u pe-puppet : full logs
Lots of things changed on centos7 and it doenst log all details in /var/log/messages. You have to use journeling for puppet logs.
Tail : journalctl -f -u pe-puppet
Full: journalctl -l -u pe-puppet : full logs
In my case I was getting
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: stack level too deep
Warning: Not using cache on failed catalog
Error: Could not retrieve catalog; skipping run
I did mistake in my manifest where I called node within node
e.g.
node apache_template inhirets apache_template {
}
This was causing continues loop and causing stack level too deep error message. Needed to remove that typo or by providing correct node to be inhirited. 🙂