title | layout | canonical |
---|---|---|
PuppetDB 1.4 » Connecting Puppet Masters to PuppetDB |
default |
/puppetdb/latest/connect_puppet_master.html |
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
Note: if you've installed PuppetDB using the PuppetDB puppet module, then the
puppetdb::master::config
class is taking care of all of this for you.
Working on your puppet master server(s), follow all of the instructions below:
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.
Enable the Puppet Labs repo and then install the puppetdb-terminus
package:
$ sudo puppet resource package puppetdb-terminus ensure=latest
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 ext/master/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
.
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:
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
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
andasync_storeconfigs
settings should be absent or set tofalse
. If you have previously used the puppet queue daemon (puppetqd), you should now disable it.
Version 1.1 of PuppetDB includes experimental support for storing Puppet
reports. This feature can be enabled by simply adding the puppetdb
report
processor in your puppet.conf
file. If you don't already have a reports
setting in your puppet.conf
file, you'll probably want to add a line like this:
reports = store,puppetdb
This will keep Puppet's default behavior of storing the reports to disk as YAML, while also sending the reports to PuppetDB.
You can configure how long PuppetDB stores these reports, and you can do some very basic querying. For more information, see:
- The experimental
event
query endpoint - The experimental
report
query endpoint - The experimental
store report
command - The experimental report wire format
More information about Puppet report processors in general can be found here.
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.
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.
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
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