CentOS7にIcingaをインストールする

今回は、Nagiosベースの統合監視ツール『Icinga』をCentOS 7にインストールしてみる。

1.インストール

それでは、実際にインストールをしてみよう。
まず、以下のコマンドでSELinux/Firewalldの無効化、前提となるパッケージを導入する。

sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
systemctl disable firewalld
yum -y install wget httpd mod_ssl gd gd-devel mariadb-server php-...