Technology

cactiのトラブル

投稿日:2020年4月28日 更新日:

1.2.10 インストールが41%から進まない

Cacti_Stats.xml.gz が壊れているので置き換える。

This was due to a damaged Cacti_Stats package in the release.

https://forums.cacti.net/viewtopic.php?f=21&t=60803&p=282080#p282080
wget https://github.com/Cacti/cacti/blob/develop/install/templates/Cacti_Stats.xml.gz -O /usr/share/cacti/install/templates/Cacti_Stats.xml.gz

1.2.11 ログインできない

本来コメントアウトされるはずのものが有効になったままリリースされているのでコメントアウトする。

comment out the $cacti_cookie_domain line. This was supposed to be commented out, but for some reason (likely late night), it was not commented out.

https://github.com/Cacti/cacti/issues/3436#issuecomment-611285060
< $cacti_cookie_domain = 'cacti.net';
---
> #$cacti_cookie_domain = 'cacti.net';

-Technology
-

執筆者:

関連記事

cURLでWebDAV

Basic認証でファイルのダウンロード curl –user name:password -X GET -O –url https://example.com/path/to/filename.t …

node.jsの最大メモリを増やす

node.jsの最大メモリは2GBです。メモリ不足でWebpackのビルドが落ちることがあります。 FATAL ERROR: Ineffective mark-compacts near heap l …

Vagrantfileの設定を外部ファイルにする

Rubyですから、お好きな形式で設定を定義して読み込みます。今回はYAMLを使います。 # -*- mode: ruby -*- # vi: set ft=ruby : require 'ya …

マルチタッチ検出

スマートフォン, タブレットなどタッチイベントを検出します。 DEMO window.addEventListener('load', (event) => { let e: H …

Raspberry Pi 4 を 外部ストレージで起動する。OSはCentOS8

CentoOS8 Raspberry Pi 4用イメージをダウンロード https://people.centos.org/pgreco/CentOS-Userland-8-stream-aarch6 …