| layout | default |
|---|---|
| title | Puppet Server: Restarting the Server |
| canonical | /puppetserver/latest/restarting.html |
Starting in version 2.3.0, you can restart Puppet Server by sending a hangup signal, also known as a HUP signal or SIGHUP, to the running Puppet Server process. The HUP signal stops Puppet Server and reloads it gracefully, without terminating the JVM process. This is generally much faster than completely stopping and restarting the process. This allows you to quickly load changes to your Puppet Server master, including configuration changes.
There are several ways to send a HUP signal to the Puppet Server process, but the most straightforward is to run the following kill command:
kill -HUP `pgrep -f puppet-server`
There are three ways to trigger your Puppet Server environment to refresh and pick up changes you've made. A request to the HTTP Admin API to flush the JRuby pool is the quickest, but picks up only certain types of changes. A HUP signal restart is also quick, and applies additional changes. Other changes require a full Puppet Server restart.
Note: Changes to Puppet Server's logging configuration in
logback.xmldon't require a server reload or restart. Puppet Server recognizes and applies them automatically, though it can take a minute or so for this to happen.
- Changes to your
hiera.yamlfile to change your Hiera configuration. - Installation or removal of gems for Puppet Server by
puppetserver gem. - Changes to the Ruby code for Puppet's core dependencies, such as Puppet, Facter, and Hiera.
- Changes to Puppet modules in an environment where you've enabled environment caching. You can also achieve this by making a request to the Admin API endpoint for flushing the environment cache.
- Changes to the CA CRL file. For example, a
puppet cert clean
- Changes to Puppet Server configuration files in its
conf.ddirectory. - Changes to the CA CRL file. For example, a
puppet cert clean
- Changes to JVM arguments, such as heap size settings, that are typically configured in your
/etc/sysconfig/puppetserverfile. - Changes to
bootstrap.cfgto enable or disable Puppet Server's certificate authority (CA) service.
For these types of changes, you must restart the process by using the operating system's service framework, for example, by using the systemctl or service commands.