差分
このページの2つのバージョン間の差分を表示します。
| 両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
| ja:faq:start [2022/12/03 02:18] – [エージェントから受信した大量のデータの処理] junichi | ja:faq:start [2023/01/31 06:12] (現在) – [server_keepalive パラメータの設定] junichi | ||
|---|---|---|---|
| 行 383: | 行 383: | ||
| // | // | ||
| + | |||
| + | === イベントに Base64 形式のカスタムフィールドがあります。それらをプレーンテキストに変換する方法を教えてください。=== | ||
| + | |||
| + | From version 761, event custom fields are saved in plain text but in previous versions they were saved in Base 64. | ||
| + | |||
| + | バージョン 761 から、イベントカスタムフィールドはプレーンテキストで保存されますが、以前のバージョンでは Base64 で保存されていました。 | ||
| + | |||
| + |   * To backup the information contained in the database see " | ||
| + |   * To see if you have information in the event custom fields, execute the following query through the " | ||
| + | |||
| + |   * データベースの情報のバックアップは、" | ||
| + |   * イベントカスタムフィールドに情報があるかどうかを見るには、" | ||
| + | |||
| + | <code sql> | ||
| + | SELECT id_evento, custom_data FROM tevento WHERE IF(CONVERT(FROM_BASE64(custom_data) USING utf8mb4) IS NULL, TRUE, IF(CONVERT(FROM_BASE64(custom_data) USING utf8mb4) = '', | ||
| + | |||
| + | |||
| + | </ | ||
| + | |||
| + | * If the previous query is positive, to convert them to plain text use: | ||
| + | |||
| + | * 上記のクエリ結果が TRUE の場合、それらをプレーンテキストに変換するには次を実行します。 | ||
| + | |||
| + | <code sql> | ||
| + | UPDATE tevento SET custom_data = CONVERT(FROM_BASE64(custom_data) USING utf8mb4) WHERE IF(CONVERT(FROM_BASE64(custom_data) USING utf8mb4) IS NULL, TRUE, IF(CONVERT(FROM_BASE64(custom_data) USING utf8mb4) = '', | ||
| + | |||
| + | |||
| + | </ | ||
| + | |||
| ==== ウェブサーバ(Apache, | ==== ウェブサーバ(Apache, | ||
| 行 596: | 行 625: | ||
| これは、'' | これは、'' | ||
| + | |||
| + | === CentOS 7 上の Pandora FMS オープンソース版で " | ||
| + | |||
| + | In version 768 this PFMS Open server dependency is required. Run with the aproppriate permissions: | ||
| + | |||
| + | Pandora FMS バージョン 768 のオープンソース版では追加の依存ファイルが必要です。適切な権限で以下を実行します。 | ||
| + | |||
| + | < | ||
| + | yum install -y cpanminus | ||
| + | cpanm -i Thread:: | ||
| + | |||
| + | </ | ||
| + | |||
| + | You may install and execute an additional dependency that checks the library and may take a few minutes to finish. | ||
| + | |||
| + | ライブラリをチェックする追加の依存ファイルがインストールされる場合があり、完了するまでに数分かかることがあります。 | ||
| ==== Pandora FMS Enterprise, ライセンス ==== | ==== Pandora FMS Enterprise, ライセンス ==== | ||