我可以在 Debian 上安装 Nagios 并且可以从存储库安装吗?

我可以在 Debian 上安装 Nagios 并且可以从存储库安装吗?

我想安装 Nagios 并且我的 Debian VM 正在运行。在 Nagios 官方网站上,他们说我们需要 CentOS 或 red hat 的最小版本。但我可以在 Debian 上安装 Nagios 吗?另一个问题是我是否可以使用存储库以最简单的方式安装它?因为当我安装 apt-get install nagios 时,我立即得到这个 E: Unable to located package nagios

安装 Nagios 的最佳方式是什么?

答案1

https://www.howtoforge.com/tutorial/install-nagios-4-3-on-debian-9/概述了该过程。

apt install wget unzip zip bash-completion net-tools

设置主机名称

hostnamectl set-hostname nagios.server.lan

确认PC主机名和hosts文件

hostnamectl 
cat /etc/hostname
cat /etc/hosts

重新启动以使更改生效

安装包含 Nagios 的 Web 服务器包并确认在端口 80 上启动并运行

apt install apache2 libapache2-mod-php7.0 php7.0 && netstat –tlpn

更多详细信息请参见上述链接。

相关内容