title | layout | canonical |
---|---|---|
PuppetDB 3.1 » 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 3.5.1 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
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-termini
package:
$ sudo puppet resource package puppetdb-termini 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 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
. If you are using Puppet 4 or greater, replace the second path with the path to the ruby supplied by Puppet at/opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet
.
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 URL that includes the hostname and port:
[main]
server_urls = https://puppetdb.example.com:8081
PuppetDB's port for secure traffic defaults to 8081 with the context root of '/'. For users that have not changed the defaults the above config (with the correct hostname) is sufficient. For more information on configuring server_urls
, including support for multiple PuppetDB backends, see configuring the PuppetDB server_urls.
To enable saving facts and catalogs in PuppetDB, 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.
PuppetDB includes 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:
More information about Puppet report processors in general can be found here.
The routes.yaml file will probably not exist yet. The path to this Puppet configuration file can be found with the command puppet master --configprint route_file
.
Create it if necessary, and add the following:
---
master:
facts:
terminus: puppetdb
cache: yaml
The files created above need to be owned by the puppet
user. Ensure that
this ownership is applied by running the following command.
$ sudo chown -R puppet:puppet `sudo puppet config print confdir`
PuppetDB listens on tcp port 8081 (https). Ensure this port is open between the Master and DB services. If the services run on the same server, no additional configuration may be needed. If the services are on separate servers, ensure the server and network firewalls allow the traffic flow.
PuppetDB works without modification with SELinux in enforcing mode.
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/puppetlabs/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