如何在 Ubuntu 20.04 LTS 上安装 Foreman

在本教程中,我们将向您展示如何在 Ubuntu 20.04 LTS 上安装 Foreman。 对于那些不知道的人,Foreman 是一个完整的物理和虚拟服务器生命周期管理工具。 此应用程序使系统管理员能够轻松自动执行重复性任务、快速部署应用程序以及主动管理本地或云中的服务器。 Foreman 作为开源软件提供,当与 Puppet、Chef、Salt、Ansible 等其他开源项目集成时,它会变得更加强大。

本文假设您至少具有 Linux 的基本知识,知道如何使用 shell,并且最重要的是,您在自己的 VPS 上托管您的站点。 安装非常简单,假设您在 root 帐户中运行,否则您可能需要添加 ‘sudo‘ 获取 root 权限的命令。 我将向您展示 Foreman 在 Ubuntu 20.04 (Focal Fossa) 上的分步安装。 您可以按照针对 Ubuntu 18.04、16.04 和任何其他基于 Debian 的发行版(如 Linux Mint)的相同说明进行操作。

在 Ubuntu 20.04 LTS Focal Fossa 上安装 Foreman

步骤 1. 首先,通过运行以下命令确保所有系统软件包都是最新的 apt 终端中的命令。

sudo apt update sudo apt upgrade sudo apt install apt-transport-https wget gnupg ca-certificates

步骤 2. 设置主机名。

使用域名设置主机名 hostnamectl 命令:

sudo hostnamectl set-hostname foreman.idroot.us echo "192.168.77.21 foreman.example.com" | sudo tee -a /etc/hosts

步骤 3. 添加 Puppet 和 Foreman 存储库。

现在我们自动配置了运行 Foreman 所需的所有组件:

  • 将 Puppet 存储库添加到 Ubuntu 系统:
sudo apt -y install ca-certificates wget wget https://apt.puppet.com/puppet6-release-focal.deb sudo apt install ./puppet6-release-focal.deb
  • 将 Foreman 存储库添加到 Ubuntu 系统。
echo "deb https://deb.theforeman.org/ bionic 2.0" | sudo tee /etc/apt/sources.list.d/foreman.list echo "deb https://deb.theforeman.org/ plugins 2.0" | sudo tee -a /etc/apt/sources.list.d/foreman.list wget -q https://deb.theforeman.org/pubkey.gpg -O- | sudo apt-key add -

步骤 4. 在 Ubuntu 20.04 上安装 Foreman。

添加存储库后,现在使用以下命令安装 Foreman:

sudo apt update sudo apt install foreman-installer

接下来,配置 Foreman 安装程序:

foreman-installer

输出:

Preparing installation Done                                                 Success!   * Foreman is running at https://foreman.idroot.com       Initial credentials are admin / meilana   * Foreman Proxy is running at https://foreman.idroot.us:8443   The full log is at /var/log/foreman-installer/foreman.log

步骤 5. 访问 Foreman Web 界面。

完成逐步安装后,打开您喜欢的 Web 浏览器并浏览到服务器域名。 默认情况下,Foreman 使用 Puppets 自签名证书,您的浏览器可能不信任这些证书。 接受有关证书的通知并继续。 您可以使用安装后返回的凭据登录 Foreman。

https://foreman.idroot.us

恭喜! 您已成功安装 Foreman。 感谢您使用本教程在 Ubuntu 20.04 LTS Focal Fossa 系统上安装 Foreman。 如需更多帮助或有用信息,我们建议您查看 Foreman 官方网站.