Amazon Linux 2023で epelリポジトリを有効化しNagiosをインストールする方法
目次
スポンサードリンク
Amazon Linux 2023 では、EPEL (Extra Packages for Enterprise Linux) リポジトリは公式にはサポートされていないようです。
参考リンク
https://docs.aws.amazon.com/ja_jp/linux/al2023/ug/compare-with-al2.html
EPEL はRHELやCentOS向けに作られており、FedoraをベースとしているAmazon Linux 2023には対応してないとのこと。
代替案として、Fedoraリポジトリを活用することができます。ただし、Fedora のパッケージは、Amazon Linux 2023 の環境で必ずしも安定して動作するとは限らないので注意してください。
Nagios をRHELにインストールする際は、通常EPELリポジトリからインストールしますが、Amazon Linux 2023の場合は、Fedoraリポジトリからインストールすることができました。
Fedoraリポジトリを有効にする方法
/etc/yum.repos.d/fedora.repo に下記を記述しましょう。
[root@hostname yum.repos.d]# cat /etc/yum.repos.d/fedora.repo
[fedora]
name=Extra Packages Fedora 36 packages for nagios - $basearch
baseurl=https://archives.fedoraproject.org/pub/archive/fedora/linux/updates/36/Everything/x86_64/
failovermethod=priority
enabled=0
gpgcheck=0
Fedoraリポジトリを指定してNagiosをインストールする
下記コマンドで、FedoraリポジトリからNagiosの関連パッケージをインストールすることができます。
[root@hostname yum.repos.d]# dnf install --enablerepo fedora nagios-common nagios-plugins nagios-plugins-users nagios-plugins-disk nagios-plugins-load nagios-plugins-procs nagios-plugins-swap nagios-plugins-uptime nagios-plugins-nrpe nagi
os-plugins-smtp nrpe nagios-plugins-tcp
Last metadata expiration check: 0:45:48 ago on Fri Oct 4 14:59:24 2024.
Dependencies resolved.
=============================================================================================================================================================================================================================================
Package Architecture Version Repository Size
=============================================================================================================================================================================================================================================
Installing:
nagios-common x86_64 4.4.9-2.fc36 fedora 8.9 k
nagios-plugins x86_64 2.4.0-6.fc36 fedora 95 k
nagios-plugins-disk x86_64 2.4.0-6.fc36 fedora 31 k
nagios-plugins-load x86_64 2.4.0-6.fc36 fedora 22 k
nagios-plugins-nrpe x86_64 4.1.0-2.fc36 fedora 44 k
nagios-plugins-procs x86_64 2.4.0-6.fc36 fedora 28 k
nagios-plugins-smtp x86_64 2.4.0-6.fc36 fedora 28 k
nagios-plugins-swap x86_64 2.4.0-6.fc36 fedora 21 k
nagios-plugins-tcp x86_64 2.4.0-6.fc36 fedora 29 k
nagios-plugins-uptime x86_64 2.4.0-6.fc36 fedora 20 k
nagios-plugins-users x86_64 2.4.0-6.fc36 fedora 19 k
nrpe x86_64 4.1.0-2.fc36 fedora 256 k
Transaction Summary
=============================================================================================================================================================================================================================================
Install 12 Packages
Total download size: 602 k
Installed size: 1.0 M
Is this ok [y/N]:
Linuxコマンドについて学べるおすすめ書籍
Linuxコマンドの知識は、プログラマにとって長く役立つ知識です。 私はこちらの書籍で一通り知識を抑えました。基本から丁寧に解説されています。
Linux教科書 図解でパッとわかる LPIC/LinuC
はじめてLPICを受ける方向け、手を動かしながらLinuxについて学びたい方におすすめ。30日間の無料体験もできる『Kindle Unlimited』でも読むことができます。
Linuxコマンドについて徹底的に学べるUdemy講座
もう絶対に忘れない Linux コマンド【Linux 100本ノック+名前の由来+丁寧な解説で、長期記憶に焼き付けろ!】
Search
Recent Posts
- Apacheの起動状態をチェックして停止してる場合にApacheを起動するシェルスクリプト
- Amazon LinuxのOSバージョンを調べる方法|/etc/redhat-release の代替ファイル
- MYSQLでダンプファイルを取得する際に発生したエラー「Couldn't execute 'SELECT BINLOG_GTID_POS('', '0')': You are not using binary logging (1381)」の原因と対処方法
- RHEL系Linuxでリポジトリを一覧表示するコマンド(dnf repolist)
- .php以外の拡張子でPHPを動作させようとして発生したエラー「Got error 'Access to the script '/var/www/html/php.html' has been denied (see security.limit_extensions)'」の原因と対処方法