差分
このページの2つのバージョン間の差分を表示します。
| 両方とも前のリビジョン 前のリビジョン | |||
| ja:documentation:pandorafms:technical_annexes:32_pfms_install_software_agent [2026/02/11 00:42] – [Pandora FMS エンドポイントのインストール] junichi | ja:documentation:pandorafms:technical_annexes:32_pfms_install_software_agent [2026/02/11 00:48] (現在) – [tar ボールからのエンドポイントインストール] junichi | ||
|---|---|---|---|
| 行 312: | 行 312: | ||
| <wrap #ks6_1 /> | <wrap #ks6_1 /> | ||
| + | |||
| + | ==== tar ボールソースを使ったエンドポイントの手動インストール ==== | ||
| + | |||
| + | Instructions for EL version 10 environments are detailed below. | ||
| + | |||
| + | EL バージョン 10 環境の手順について、以下に詳しく説明します。 | ||
| + | |||
| + | 1. Elevate privileges to the **root** user; you are solely responsible for this key. Update repositories and install the **Perl** language if it is not already installed: | ||
| + | |||
| + | 1. 権限を **root** ユーザに昇格します。この責任はあなたにあります。リポジトリを更新し、**Perl** 言語がまだインストールされていない場合はインストールしてください。 | ||
| + | |||
| + | <code bash> | ||
| + | su - | ||
| + | dnf update | ||
| + | dnf install perl wget -y | ||
| + | </ | ||
| + | |||
| + | Download the PFMS Endpoint installer with the source code included: | ||
| + | |||
| + | ソースコードが含まれている PFMS エンドポイントインストーラーをダウンロードします。 | ||
| + | |||
| + | <code bash> | ||
| + | wget https:// | ||
| + | </ | ||
| + | |||
| + | 2. Copy the downloaded file to ''/ | ||
| + | |||
| + | 2. ダウンロードしたファイルを ''/ | ||
| + | |||
| + | <code bash> | ||
| + | tar xvzf pandorafms_one_agent_linux-latest.src.tar.gz | ||
| + | cd unix | ||
| + | ./ | ||
| + | </ | ||
| + | |||
| + | <WRAP center round tip 90%> | ||
| + | |||
| + | It may be necessary to manually install some additional required dependencies: | ||
| + | |||
| + | <code bash> | ||
| + | dnf install libnsl perl-Sys-Syslog -y | ||
| + | </ | ||
| + | |||
| + | </ | ||
| + | |||
| + | <WRAP center round tip 90%> | ||
| + | |||
| + | 追加の必要な依存ファイルを手動でインストールする必要がある場合があります。 | ||
| + | |||
| + | <code bash> | ||
| + | dnf install libnsl perl-Sys-Syslog -y | ||
| + | </ | ||
| + | |||
| + | </ | ||
| + | |||
| + | Additionally, | ||
| + | |||
| + | さらに、Perl //core// モジュールのインストールではインストールされないモジュールがいくつかあります。これらのモジュールは、以下のコマンドでインストールできます。 | ||
| + | |||
| + | <code bash> | ||
| + | cpan YAML::Tiny | ||
| + | cpan Thread:: | ||
| + | </ | ||
| + | |||
| + | The complete list of dependencies and/or modules is as follows: | ||
| + | |||
| + | 依存関係およびモジュールの完全なリストは次のとおりです。 | ||
| + | |||
| + | <code perl> | ||
| + | File:: | ||
| + | File::Copy | ||
| + | O::Socket | ||
| + | MIME:: | ||
| + | POSIX | ||
| + | Scalar:: | ||
| + | Sys:: | ||
| + | Sys::Syslog | ||
| + | Thread:: | ||
| + | Time::Local | ||
| + | YAML::Tiny | ||
| + | commands | ||
| + | constant | ||
| + | strict | ||
| + | threads | ||
| + | threads:: | ||
| + | warnings | ||
| + | libnsl | ||
| + | perl-Sys-Syslog | ||
| + | </ | ||
| + | |||
| + | **Post-installation configurations**. | ||
| + | |||
| + | **インストール後の設定** | ||
| + | |||
| + | Once everything has finished installing, you must manually edit the Endpoint configuration file (using your preferred text editor) [[: | ||
| + | |||
| + | すべてのインストールが完了したら、エンドポイント設定ファイルを手動で編集する必要があります。(好みのテキストエディタを使用して) [[: | ||
| + | |||
| + | <code bash> | ||
| + | vi / | ||
| + | </ | ||
| + | |||
| + | As a recommendation, | ||
| + | |||
| + | 推奨としては、このエンドポイントでリモート設定を有効にします。 | ||
| + | |||
| + | <code bash> | ||
| + | sed -i " | ||
| + | </ | ||
| + | |||
| + | Once the configurations are complete, the service can be started: | ||
| + | |||
| + | 設定が完了したら、サービスを開始できます。 | ||
| + | |||
| + | <code bash> | ||
| + | systemctl start pandora_agent_daemon | ||
| + | systemctl enable pandora_agent_daemon | ||
| + | </ | ||
| + | |||
| + | <wrap #ks6_2 /> | ||
| ==== エンドポイントのカスタムインストール ==== | ==== エンドポイントのカスタムインストール ==== | ||