Icinga 2 是一个开源工具,用于监控网络资源、管理警报并为您提供帮助监控您的网络。
在 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
添加存储库后,我们现在可以使用以下dnf
命令安装 Icinga 2 :
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 未加固。您可以使用mysql_secure_installation
脚本保护 MariaDB 。您应该仔细阅读以下每个步骤,这些步骤将设置 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" }
保存并关闭,然后启动并启用 Icinga 2:
systemctl enable --now icinga2
验证 Icinga 2 服务的状态:
systemctl status icinga2.service
感谢您使用本教程在您的 AlmaLinux 8 系统上安装 Icinga 监控服务器。如需更多帮助或有用信息,我们建议您查看Icinga 官方网站。
© 版权声明
文章版权归作者所有,未经允许请勿转载。