Configuring Puppet Server
Sections
After you've installed Puppet Enterprise, optimize it for your environment by configuring Puppet Server settings as needed.
Tune the Ruby load path
The ruby_load_path
setting determines where Puppet Server finds components
such as Puppet and Facter.
$puppetserver_jruby_puppet_ruby_load_path =
['/opt/puppetlabs/puppet/lib/ruby/vendor_ruby',
'/opt/puppetlabs/puppet/cache/lib']
.libdir
you must also change the
vardir
. To change the path to a
different array in pe.conf
:
Tune the multithreaded server setting
The jruby_puppet_multithreaded
setting allows you to enable
multithreaded mode, which uses a single JRuby instance to
process requests, like catalog compiles, concurrently. The setting defaults to
false
.
Multithreaded mode is an experimental feature which might experience breaking changes in future releases. Test the feature in a non-production environment before enabling it in production.
To enable or disable the setting using Hiera:
Enable or disable cached data when updating classes
The optional environment-class-cache-enabled
setting specifies
whether cached data is used when updating classes in the console. When true
, Puppet Server refreshes classes using file
sync, improving performance.
The
default value for environment-class-cache-enabled
depends
on whether you use Code Manager.
With Code Manager, the default value is enabled (
true
). File sync clears the cache automatically in the background, so clearing the environment cache manually isn't required when using Code Manager.Without Code Manager, the default value is disabled (
false
).
To enable or disable the cache using Hiera:
Change the environment_timeout
setting
The environment_timeout
setting controls how long the primary server
caches data it loads from an environment, determining how much time passes before changes to
an environment's Puppet code are reflected in its
environment.
environment_timeout
is set
to 0
. This lowers the performance of your primary server but makes
it easy for new users to deploy updated Puppet code.
Once your code deployment process is mature, change this setting to
unlimited
.code_manager_auto_configure
parameter to
true
, environment_timeout
is updated to
unlimited
To change the environment_timeout
setting using
pe.conf
:
For more information, see Environments limitations
Add certificates to the puppet-admin
certificate allowlist
Add trusted certificates to the puppet-admin
certificate
allowlist.
To add allowed certificates using pe.conf
:
Disable update checking
Puppet Server (pe-puppetserver) checks for updates when it starts or restarts, and every 24 hours thereafter. It transmits basic, anonymous info to our servers at Puppet, Inc. to get update information. You can optionally turn this off.
Specifically, it transmits:
Product name
Puppet Server version
IP address
Data collection timestamp
To turn off update checking using the console:
- Open the console, click Node groups, and select the PE Master node group.
-
On the Classes tab, find the
puppet_enterprise::profile::master
class, add thecheck_for_updates
parameter from the list, and change its value tofalse
. - Click Add parameter and commit changes.
- On the nodes hosting the primary server and console, run Puppet.
Puppet Server configuration files
At startup, Puppet Server reads
all of the .conf
files in the conf.d
directory (/etc/puppetlabs/puppetserver/conf.d
).
The conf.d
directory contains the following files:
File name | Description |
---|---|
auth.conf
|
Contains authentication rules and settings for agents and API endpoint access. |
global.conf
|
Contains global configuration settings for Puppet Server, including logging settings. |
metrics.conf
|
Contains settings for Puppet Server metrics services. |
pe-puppet-server.conf
|
Contains Puppet Server settings specific to Puppet Enterprise. |
webserver.conf
|
Contains SSL service configuration settings. |
ca.conf
|
(Deprecated) Contains rules for Certificate Authority services.
Superseded by webserver.conf and
auth.conf . |
For information about Puppet Server configuration files, see Puppet Server's config files for the Puppet Server version you're using, and the Related information links below.
pe-puppet-server.conf settings
The pe-puppet-server.conf
file contains Puppet Server
settings specific to Puppet Enterprise, with all settings wrapped in a
jruby-puppet
section.
-
gem-home
- Determines where JRuby looks for gems. It is
also used by the
puppetserver gem
command line tool. -
server-conf-dir
- Sets the Puppet configuration directory's path.
-
server-var-dir
- Sets the Puppet variable directory's path.
-
max-queued-requests
-
Optional. Sets the maximum number of requests that can be queued waiting to borrow a from the pool. After this limit is exceeded, a
503 Service Unavailable
response is returned for all new requests until the queue drops below the limit.Ifmax-retry-delay
is set to a positive value, then the 503 response includes aRetry-After
header indicating a random sleep time after which the client can retry the request.Note: Don't use this solution if your managed infrastructure includes a significant number of agents older than Puppet 5.3. Older agents treat a 503 response as a failure, which ends their runs, causing groups of older agents to schedule their next runs at the same time, creating a thundering herd problem. -
max-retry-delay
- Optional. Sets the upper limit in seconds for the random sleep set as a
Retry-After
header on 503 responses returned whenmax-queued-requests
is enabled. -
jruby_max_active_instances
- Controls the maximum number of JRuby instances to allow on the Puppet Server.
-
max_requests_per_instance
- Sets the maximum number of requests per instance of a JRuby interpretor before it is killed.
-
ruby-load-path
- Sets the Puppet configuration directory's
path. The agent's
libdir
value is added by default.