Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
excuse me I have a problem when I want to run puppet agent -t it says problem on port 8140, and I have been open a port in iptables, and I don’t see any certificate, I am confused what to do thanks.
before i open the port in iptables and ufw this show up
http://store2.up-00.com/2016-12/1482621764491.png
after open the port
On Step 4, you have us listing the puppet cert requests. I don’t see anywhere in the write-up where you talk about how to actually join the node to the master. Did I miss something? In my experience there will be no cert requests unless you have sent one to the master by running an initial
sudo puppet agent -t --server <puppetmasterFQDN> --waitforcert <xx>
This comment has been deleted
I do all the instruction above but the part that List current certificate requests it did not appear any cert? why ?
I have 3 servers one of them puppet master and the other 2 clients, everything in the tutorial works well, but the cert list not work, every server the java args 2 gigs, and its all in virtual machine.
If you don’t see the certs when you run “sudo /opt/puppetlabs/bin/puppet cert list”, then you need to do the following:
edit /etc/puppetlabs/puppet/puppet.conf on each of your nodes (not puppetmaster) and add your hostname as follows:
[main] server=puppetserver.(your FQDN)
Save that and then on each node run: puppet agent -t
Then go to the puppetmaster and run: /opt/puppetlabs/bin/puppet cert list
and you should see the certs.
Hello Melissa,
I am not sure if anyone else noticed but you have to edit the puppet.conf file on the agent and tell it where the puppetserver is otherwise you can’t sign cert requests.
nano -c /etc/puppetlabs/puppet/puppet.conf
Add the following 2 lines to that file:
[agent] server = server.your.dom
Thanks Melissa great article got me started in the rght direction, I appreciate all your hard work.