Icinga 2是一个免费的,开源的,使用最广泛的监视系统,可用于监视该系统。网络主机和服务的运行状况。使用Icinga 2,您可以监视CPU负载,内存使用率,磁盘使用率,IMAP,POP3,SMTP,HTTP,路由器,交换机等。
在Debian 10 Buster上安装Icinga 2
步骤1.在运行下面的教程之前,重要的是通过apt
在终端中运行以下命令来确保系统是最新的:
sudo apt update sudo apt install apt-transport-https wget gnupg
步骤2.安装LAMP堆栈。
需要Debian 10 LAMP服务器。如果您没有安装LAMP,则可以按照我们的教程进行操作。[本站搜索]
步骤3.在Debian 10上安装Icinga 2。
现在,我们将Icinga存储库添加到我们的系统中:
wget -O - https://packages.icinga.com/icinga.key | apt-key add - echo "deb https://packages.icinga.com/debian icinga-buster main" > /etc/apt/sources.list.d/icinga.list echo "deb-src https://packages.icinga.com/debian icinga-buster main" >> /etc/a
然后,您可以使用以下命令进行安装:
sudo apt update
sudo apt install icingaweb2 icingacli
一旦安装了所有软件包,请启动Icinga 2服务,并使用以下命令在系统重新引导后使其启动:
sudo systemctl start icinga2
sudo systemctl enable icinga2
步骤4.配置MariaDB和IDO模块。
现在,我们在您的系统上安装了IDO模块。您可以通过运行以下命令来安装它们:
sudo apt install icinga2-ido-mysql
接下来,选择是,然后按Enter。系统将提示您配置数据库 ,如以下屏幕所示:icinga2-ido-mysql with dbconfig-common
接下来,您将需要为Icinga创建数据库和用户。首先,使用以下命令登录MariaDB shell:
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
接下来,我们将需要登录MariaDB控制台并为Icinga 2创建数据库。运行以下命令:
mysql -u root -p
这将提示您输入密码,因此输入您的MariaDB根密码,然后按Enter。登录数据库服务器后,需要为Icinga 2安装创建数据库:
MariaDB [(none)]> create database icingaweb2; MariaDB [(none)]> grant all privileges on icingaweb.* to icingaweb2@localhost identified by 'icinga123'; MariaDB [(none)]> flush privileges; MariaDB [(none)]> exit;
步骤5.安装Icinga 2 Web。
现在,我们使用以下命令安装Icinga Web 2:
sudo apt install icingaweb2
然后,为Icinga Web 2创建系统组:
addgroup --system icingaweb2 usermod -a -G icingaweb2 www-data
接下来,您将需要为Icinga Web 2生成一个新的安装令牌:
icingacli setup config directory --group icingaweb2 icingacli setup token create
输出:
36ab1012042gdtb9c
最后,重新启动Apache和Icinga2服务以应用所有配置更改:
sudo systemctl restart apache2
sudo systemctl restart icinga
步骤6.访问Icinga 2 Web界面。
默认情况下,Icinga2将在HTTP端口80上可用。打开您喜欢的浏览器,然后浏览并完成所需的步骤以完成安装。如果您使用的是防火墙,请打开端口80以启用对控制面板的访问。http://your-ip-address/icingaweb2/setup
恭喜你!您已经成功安装了Icinga。感谢您使用本教程在Debian系统上安装Icinga 2监视服务器的最新版本。有关其他帮助或有用信息,建议您查看Icinga官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun44635.html