You can install agents on *nix, Windows, or macOS.
After installing agents, you must sign their certificates. For details, see Managing certificate signing requests on the command line
*nix agents
InstallYou can install *nix agents using an install script.
Windows agents
InstallYou can install Windows agents graphically or from the command line using an .msi package.
Windows agents with the .msi package
InstallUse the Windows .msi package if you need to specify agent configuration details during installation, or if you need to install Windows agents locally without internet access.
Download the .msi package.
Windows agents with the installer
InstallUse the MSI installer for a more automated installation process. The installer can configure puppet.conf
, create CSR attributes, and configure the agent to talk to your master.
- Run the installer as administrator.
- When prompted, provide the hostname of your master, for example puppet.
Windows agents using msiexec
from the command line
Install Install the MSI manually from the the command line if you need to customize puppet.conf
, CSR attributes, or certain agent properties.
/l*v install.txt
to log the progress of the installation to a file.MSI properties
If you install Windows agents from the command line using the .msi package, you can optionally specify these properties.
PUPPET_MASTER_SERVER
, PUPPET_CA_SERVER
, PUPPET_AGENT_CERTNAME
, or PUPPET_AGENT_ENVIRONMENT
, the installer replaces the existing value in puppet.conf
and re-uses the value at upgrade unless you specify a new value. Therefore, if you've customized these properties, don't change the setting directly in puppet.conf
; instead, re-run the installer and set a new value at installation.Property | Definition | Setting in pe.conf | Default |
---|---|---|---|
INSTALLDIR | Location to install Puppet and its dependencies. | n/a |
|
PUPPET_MASTER_SERVER | Hostname where the master can be reached. | server | puppet |
PUPPET_CA_SERVER | Hostname where the CA master can be reached, if you're using multiple masters and only one of them is acting as the CA. | ca_server | Value of PUPPET_MASTER_SERVER |
PUPPET_AGENT_CERTNAME | Node's certificate name, and the name it uses when requesting catalogs. For best compatibility, limit the value of | certname | Value of facter fdqn |
PUPPET_AGENT_ENVIRONMENT | Node's environment. Note: If a value for the environment variable already exists in puppet.conf , specifying it during installation does not override that value. | environment | production |
PUPPET_AGENT_STARTUP_MODE | Whether and how the agent service is allowed to run. Allowed values are:
| n/a | Automatic |
PUPPET_AGENT_ACCOUNT_USER | Windows user account the agent service uses. This property is useful if the agent needs to access files on UNC shares, because the default The user account must already exist, and can be a local or domain user. The installer allows domain users even if they have not accessed the machine before. The installer grants This property must be combined with | n/a | LocalSystem |
PUPPET_AGENT_ACCOUNT_PASSWORD | Password for the agent's user account. | n/a | No Value |
PUPPET_AGENT_ACCOUNT_DOMAIN | Domain of the agent's user account. | n/a | . |
REINSTALLMODE | A default MSI property used to control the behavior of file copies during installation. Important: If you need to downgrade agents, use REINSTALLMODE=amus when calling msiexec.exe at the command line to prevent removing files that the application needs. | n/a | amus as of puppet-agent 1.10.10 and puppet-agent 5.3.4 omus in prior releases |
puppet.acme.com
: ExampleCorp\bob
: Puppet on Windows
Upgrading or downgrading between 32-bit and 64-bitIf necessary, you can upgrade or downgrade between 32-bit and 64-bit Puppet on Windows nodes.
Upgrading to 64-bit
To upgrade from 32-bit to 64-bit Puppet, simply install 64-bit Puppet. You don't need to uninstall the 32-bit version first.
The installer specifically stores information in different areas of the registry to allow rolling back to the 32-bit agent.
Downgrading to 32-bit
If you need to replace a 64-bit version of Puppet with a 32-bit version, you must uninstall Puppet before installing the new package.
You can uninstall Puppet through the Add or Remove Programs interface or from the command line.
To uninstall Puppet from the command line, you must have the original MSI file or know the ProductCode of the installed MSI:
When you uninstall Puppet, the uninstaller removes the Puppet program directory, agent services, and all related registry keys. It leaves the $confdir, $codedir, and $vardir intact, including any SSL keys. To completely remove Puppet from the system, manually delete these directories.
macOS agents
InstallYou can install macOS agents from Finder or from the command line.
Download the appropriate agent tarball.
macOS agents from Finder
InstallYou can use Finder to install the agent on your macOS machine.
macOS agents from the command line
InstallYou can use the command line to install the agent on a macOS machine.
PATH
Adding executables to your To run interactive Puppet commands, you must either add their location to your PATH
or execute them using their full path.
The location for Puppet executables is /opt/puppetlabs/bin/
, which is not in your PATH
environment variable by default.
PATH
for your current terminal session, run: Alternatively, you can add this location wherever you configure your PATH
, such as your .profile
or .bashrc
configuration files.Managing certificate signing requests on the command line
You can view, approve, and reject node requests using the command line.
Configuring agents
You can add additional configuration to agents by editing /etc/puppetlabs/puppet/puppet.conf
directly, or by using the puppet config set
sub-command, which edits puppet.conf
automatically.
For example, to point the agent at a master called master.example.com
, run puppet config set server master.example.com
. This command adds the setting server = puppetmaster.example.com
to the [main]
section of puppet.conf
.
To set the certname for the agent, run /opt/puppetlabs/bin/puppet config set certname agent.example.com
.