前提・実現したいこと
Cactiにtholdプラグインを導入したい。
発生している問題・エラーメッセージ
thresholdプラグインを所定のディレクトリ(cacti/plugins/)
へ配置後、CactiのGUIよりインストール→Enableを実行したが、
左側ツリー、上部タブバーへtholdが表示されない。
Cacti Logにはプラグイン自体を認識しているようなログが出力されている。
試したこと
・Dockerにて同ver環境を構築後、対象プラグインが機能する事を確認した。
Cacti側の設定の差分で事象が再現するかを試したものの、再現はされなかった。
・.*cacti/plugins/thold/パスを直打ちしてもindexへ飛ばされる
検証環境構築用Docker-compose.yml
version: '2'
services:
cacti:
image: "smcline06/cacti:1.1.10"
ports:
- "80:80"
- "443:443"
environment:
- DB_NAME=cacti_master
- DB_USER=cactiuser
- DB_PASS=cactipassword
- DB_HOST=db
- DB_PORT=3306
- DB_ROOT_PASS=rootpassword
- INITIALIZE_DB=1
- TZ=America/Los_Angeles
links:
- db
db:
image: "percona:5.7.14"
ports:
- "3306:3306"
command:
- mysqld
- --character-set-server=utf8mb4
- --collation-server=utf8mb4_unicode_ci
- --max_connections=200
- --max_heap_table_size=128M
- --max_allowed_packet=32M
- --tmp_table_size=128M
- --join_buffer_size=128M
- --innodb_buffer_pool_size=1G
- --innodb_doublewrite=OFF
- --innodb_flush_log_at_timeout=3
- --innodb_read_io_threads=32
- --innodb_write_io_threads=16
environment:
- MYSQL_ROOT_PASSWORD=rootpassword
- TZ=America/Los_Angeles
補足情報(FW/ツールのバージョンなど)
cacti 1.1.10
thold 1.0.3
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/06/03 02:12