The Foreman installer is a collection of Puppet modules that installs everything required for a full working Foreman setup. It uses native OS packaging (.rpm or .deb packages) and adds necessary configuration for the complete installation.

Components include the Foreman web UI, Smart Proxy, a Puppet server, TFTP, DNS and DHCP servers. It is configurable and the Puppet modules can be read or run in "no-op" mode to see what changes it will make.

Supported operating systems

The following operating systems are supported by the installer, have packages, and are tested for deploying Foreman:

Table 1. Operating systems supported by foreman-installer

Operating System

Architecture

Notes

Debian 11 (Bullseye)

amd64

Ubuntu 20.04 (Focal)

amd64

Foreman community advises against using an existing system because the Foreman installer will affect the configuration of several components.

The installation requires 4 GB of memory. For more information, see System Requirements.

The Foreman installer uses Puppet to install Foreman. This guide assumes that you have a newly installed operating system, on which the installer will setup Foreman, a Puppet server, and the Smart Proxy by default.

1. Configuring repositories

Procedure

Select the operating system and version you are installing on:

1.1. Debian 11 (Bullseye)

  1. Install the wget and ca-certificates packages:

    # apt install wget ca-certificates
  2. Change directory to /tmp and retrieve the puppet7-release-bullseye.deb package:

    # cd /tmp && wget https://apt.puppet.com/puppet7-release-bullseye.deb
  3. Install the puppet7-release-bullseye.deb package:

    # apt install /tmp/puppet7-release-bullseye.deb
  4. Enable the Foreman repository:

    # wget https://deb.theforeman.org/foreman.asc -O /etc/apt/trusted.gpg.d/foreman.asc
    # echo "deb http://deb.theforeman.org/ bullseye 3.10" | sudo tee /etc/apt/sources.list.d/foreman.list
    # echo "deb http://deb.theforeman.org/ plugins 3.10" | sudo tee -a /etc/apt/sources.list.d/foreman.list

1.2. Ubuntu 20.04 (Focal)

  1. Install the wget and ca-certificates packages:

    # apt install wget ca-certificates
  2. Change directory to /tmp and retrieve the puppet7-release-focal.deb package:

    # cd /tmp && wget https://apt.puppet.com/puppet7-release-focal.deb
  3. Install the puppet7-release-focal.deb package:

    # apt install /tmp/puppet7-release-focal.deb
  4. Enable the Foreman repository:

    # wget https://deb.theforeman.org/foreman.asc -O /etc/apt/trusted.gpg.d/foreman.asc
    # echo "deb http://deb.theforeman.org/ focal 3.10" | sudo tee /etc/apt/sources.list.d/foreman.list
    # echo "deb http://deb.theforeman.org/ plugins 3.10" | sudo tee -a /etc/apt/sources.list.d/foreman.list

2. Installing Foreman server packages

Procedure
  1. Update package lists:

    # apt update
  2. Update all packages:

    # apt upgrade
  3. Install foreman-installer:

    # apt install foreman-installer

3. Running the Installer

The installation run is non-interactive, but the configuration can be customized by supplying any of the options listed in foreman-installer --help, or by running foreman-installer -i for interactive mode. More examples are given in the Installation Options section. Adding -v will disable the progress bar and display all changes.

To run the installer, execute:

# foreman-installer

When the installer has completed, details will be printed about where to find Foreman and the Smart Proxy.