Docs: PuppetDB 1 » Connecting Puppet Masters to PuppetDB


PuppetDB 1 » Connecting Puppet Masters to PuppetDB

Note: To use PuppetDB, your site’s puppet master(s) must be running Puppet 2.7.12 or later .

After PuppetDB is installed and running, you should configure your puppet master(s) to use it. Once connected to PuppetDB, puppet masters will do the following:

  • Send every node’s catalog to PuppetDB
  • Send every node’s facts to PuppetDB
  • Query PuppetDB when compiling node catalogs that collect exported resources
  • Query PuppetDB when responding to inventory service requests

Working on your puppet master server(s), follow all of the instructions below:

Step 1: Install Plugins

Currently, puppet masters need additional Ruby plugins in order to use PuppetDB. Unlike custom facts or functions, these cannot be loaded from a module and must be installed in Puppet’s main source directory.

For PE Users

Enable the Puppet Labs repo and then install the pe-puppetdb-terminus package:

$ sudo puppet resource package pe-puppetdb-terminus ensure=latest

For Open Source Users

Enable the Puppet Labs repo and then install the puppetdb-terminus package:

$ sudo puppet resource package puppetdb-terminus ensure=latest

On Platforms Without Packages

If your puppet master isn’t running Puppet from a supported package, you will need to install the plugins manually:

  • Download the PuppetDB source code, unzip it and navigate into the resulting directory in your terminal.
  • Run sudo cp -R puppet/lib/puppet /usr/lib/ruby/site_ruby/1.8/puppet. Replace the second path with the path to your Puppet installation if you have installed it somewhere other than /usr/lib/ruby/site_ruby.

Step 2: Edit Config Files

Locate Puppet’s Config Directory

Find your puppet master’s config directory by running sudo puppet config print confdir. It will usually be at either /etc/puppet/ or /etc/puppetlabs/puppet/.

You will need to edit (or create) three files in this directory:

1. Edit puppetdb.conf

The puppetdb.conf file will probably not exist yet. Create it, and add the PuppetDB server’s hostname and port:

[main]
server = puppetdb.example.com
port = 8081
  • PuppetDB’s port for secure traffic defaults to 8081.
  • Puppet requires use of PuppetDB’s secure HTTPS port. You cannot use the unencrypted, plain HTTP port.

If no puppetdb.conf file exists, the following default values will be used:

server = puppetdb
port = 8081

2. Edit puppet.conf

To enable PuppetDB for the inventory service and saved catalogs/exported resources, add the following settings to the [master] block of puppet.conf (or edit them if already present):

[master]
  storeconfigs = true
  storeconfigs_backend = puppetdb

Note: The thin_storeconfigs and async_storeconfigs settings should be absent or set to false. If you have previously used the puppet queue daemon (puppetqd), you should now disable it.

3. Edit routes.yaml

The routes.yaml file will probably not exist yet. Create it if necessary, and add the following:

---
master:
  facts:
    terminus: puppetdb
    cache: yaml

This will make PuppetDB the authoritative source for the inventory service.

Step 3: Restart Puppet Master

Use your system’s service tools to restart the puppet master service. For open source users, the command to do this will vary depending on the front-end web server being used. For Puppet Enterprise users, run:

$ sudo /etc/init.d/pe-httpd restart

Your puppet master should now be using PuppetDB to store and retrieve catalogs, facts, and exported resources. You can test this by triggering a puppet agent run on an arbitrary node, then logging into your PuppetDB server and viewing the /var/log/puppetdb/puppetdb.log or /var/log/pe-puppetdb/pe-puppetdb.log file — you should see calls to the “replace facts” and “replace catalog” commands:

2012-05-17 13:08:41,664 INFO  [command-proc-67] [puppetdb.command] [85beb105-5f4a-4257-a5ed-cdf0d07aa1a5] [replace facts] screech.example.com
2012-05-17 13:08:45,993 INFO  [command-proc-67] [puppetdb.command] [3a910863-6b33-4717-95d2-39edf92c8610] [replace catalog] screech.example.com

↑ Back to top