在本教程中,我们将向您展示如何在 AlmaLinux 8 上安装 Icinga。 对于那些不知道的人,Icinga 2 是一个开源工具,用于监控网络资源、管理警报并为您提供帮助监控您的网络。
本文假设您至少具有 Linux 的基本知识,知道如何使用 shell,最重要的是,您将站点托管在自己的 VPS 上。 安装非常简单,假设您在 root 帐户中运行,否则您可能需要添加 ‘sudo
‘ 到获得 root 权限的命令。 我将向您展示在 AlmaLinux 8 上逐步安装 Icinga 监控。您可以按照 CentOS 和 Rocky Linux 的相同说明进行操作。
在 AlmaLinux 8 上安装 Icinga
步骤 1. 首先,让我们先确保您的系统是最新的。
sudo dnf update sudo dnf install epel-release
步骤 2. 在 AlmaLinux 8 上安装 Icinga。
现在我们将 Icinga 存储库添加到您的系统中:
sudo tee /etc/yum.repos.d/icinga2.repo<<EOF [icinga2] name=Icinga 2 Repository for EPEL 8 baseurl=https://packages.icinga.com/epel/8/release enabled=1 EOF
接下来,导入 Icinga GPG 密钥:
sudo rpm --import https://packages.icinga.com/icinga.key
之后,更新 dnf
缓存:
sudo dnf clean all sudo dnf makecache
添加存储库后,我们现在可以使用以下命令安装 Icinga 2 dnf
命令:
sudo dnf install vim icinga2 icinga2-selinux icinga2-ido-mysql vim-icinga2
接下来,启用 Icinga 2 模块:
sudo icinga2 feature enable command ido-mysql syslog
步骤 3. 安装 MariaDB。
MariaDB 是一种流行的数据库服务器。 现在我们使用以下命令安装 MariaDB 数据库服务器:
sudo dnf install mariadb-server mariadb
安装完成后,开始使用以下命令使其在系统启动时启动:
sudo systemctl restart mariadb sudo systemctl status mariadb sudo systemctl enable mariadb
默认情况下,MariaDB 未加固。 您可以使用以下方法保护 MariaDB mysql_secure_installation
脚本。 您应该仔细阅读以下每个步骤,这些步骤将设置 root 密码、删除匿名用户、禁止远程 root 登录以及删除测试数据库和访问安全 MariaDB 的权限:
mysql_secure_installation
像这样配置它:
- Set root password? [Y/n] y - Remove anonymous users? [Y/n] y - Disallow root login remotely? [Y/n] y - Remove test database and access to it? [Y/n] y - Reload privilege tables now? [Y/n] y
为 Icinga 2 创建一个 MariaDB 数据库,如下所示:
$ mysql -u root -p CREATE DATABASE icinga; GRANT ALL PRIVILEGES ON icinga.* TO 'icinga'@'localhost' IDENTIFIED BY 'your-strong-passwd'; FLUSH PRIVILEGES; EXIT;
接下来,我们导入 Icinga 2 数据库:
mysql -u root -p icinga < /usr/share/icinga2-ido-mysql/schema/mysql.sql
然后,配置数据库访问:
sudo nano /etc/icinga2/features-available/ido-mysql.conf
添加以下几行:
/** * The IdoMysqlConnection type implements MySQL support * for DB IDO. */ object IdoMysqlConnection "ido-mysql" { user = "icinga" password = "your-strong-passwd" host = "localhost" database = "icinga" }
Save 和 close,然后启动并启用 Icinga 2:
systemctl enable --now icinga2
验证 Icinga 2 服务的状态:
systemctl status icinga2.service
恭喜! 您已成功安装 Icinga。 感谢您使用本教程在您的 AlmaLinux 8 系统上安装 Icinga 监控服务器。 如需更多帮助或有用信息,我们建议您查看 Icinga 官方网站.