web-dev-qa-db-ja.com

Nagios用にインストールするmailxパッケージはどれですか?

Nagios Ubuntuクイックスタート手順 に従っています。 Ubuntu 10.10でNagios 3.2.3をインストールしています。

ドキュメントの一番下には、mailxとpostfixパッケージをインストールする必要があると書かれています。 (Postfixはすでにインストールされています。)しかし、mailxをインストールしようとすると、3つのパッケージのどれをインストールするか尋ねられます。

$ Sudo apt-get install mailx
[Sudo] password for nagios: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package mailx is a virtual package provided by:
  mailutils 1:2.1+dfsg1-4ubuntu1
  heirloom-mailx 12.4-1.1
  bsd-mailx 8.1.2-0.20090911cvs-2ubuntu1
You should explicitly select one to install.
E: Package mailx has no installation candidate

どれをインストールすればよいですか?

10
coffee-grinder

それらのいずれかをインストールできるはずです。システムにbsd-mailxがありますが、それを使用しない理由はありません。

これは意図した移行パスのようです。
ここにいくつかのapt-cache show mailx出力があります。

Depends: bsd-mailx
Description: Transitional package for mailx rename
 This dummy package is provided to smooth the upgrade from mailx to
 bsd-mailx and can be safely removed afterwards.

ただし、2つの追加事項があります。使用している命令セットは、この時点ではかなり古いものです(これまで見てきたように、パッケージ名の一部は時間とともに変化します)。また、ソースからのインストールも重要です。

おそらく、より制御したり、特定のバージョンをインストールしたりするために、実際にソースからインストールしたいと思っています。
しかし、あなたがこれに気付いていない場合(または知らない人のために)、すでにnagiosのリポジトリにいくつかの構築済みのパッケージがあります。

apt-cache search nagiosからのわずかに編集された出力を次に示します。

nagios3-core - A Host/service/network monitoring and management system core files
nagios3 - A Host/service/network monitoring and management system
nagios3-cgi - cgi files for nagios3
nagios3-common - support files for nagios3
nagios3-dbg - debugging symbols and debug stuff for nagios3
nagios3-doc - documentation for nagios3
nagios-images - Collection of images and icons for the nagios system
nagios-nrpe-server - Nagios Remote Plugin Executor Server
nagios-plugins - Plugins for the nagios network monitoring and management system
nagios-plugins-basic - Plugins for the nagios network monitoring and management system
nagios-plugins-standard - Plugins for the nagios network monitoring and management system
[...]
djagios - A package to help configure nagios written in Django
libnagios-object-Perl - module to parse and represent Nagios configuration as objects
libnagios-plugin-Perl - family of Perl modules to streamline writing Nagios
mailping - monitor email service availability and functioning
nagcon - console application interfacing to Nagios
nagios-nrpe-plugin - Nagios Remote Plugin Executor Plugin
nagios-plugins-extra - Plugins for the nagios network monitoring and manegement system.
nagios-snmp-plugins - SNMP Plugins for nagios
nagios-statd-client - Nagios client for monitoring remote system information
nagios-statd-server - Nagios server for monitoring remote system information
nagiosgrapher - Charting add-on for Nagios
nagstamon - Nagios status monitor which takes place in systray or on desktop
nagvis - Visualization addon for Nagios
ndoutils-nagios3-mysql - This provides the NDOUtils for Nagios with MySQL support
nsca - Nagios service monitor agent
pomamonitor - A simple Host downtime alert for GNOME/KDE desktop
4
belacqua

おそらく適切なプログラムが既にインストールされています。次のコマンドを試してください:mailx -s Test postmasterおよびmail -s Test postmaster。行にctrl-csと入力して、コマンドを終了します。どちらかが見つかって、上記のように呼び出されても失敗しない場合は、大丈夫です。それらのいずれかが失敗した場合、使用するコマンドがNagiosが使用するものであることを確認する必要があります。必要に応じて、構成内のコマンドを変更できます。

2
BillThor