Collectd installation on Debian

apt-get install collectd lighttpd php5-cgi rrdtool perl librrds-perl libconfig-general-perl libcurl3-gnutls libsensors4 librrds-perl librrd4 libhtml-parser-perl default-jre-headless libregexp-common-perl cp -fa /usr/share/doc/collectd/examples/collection3 /var/www/ chown -R www-data:www-data /var/www/collection3/ mkdir /usr/lib/cgi-bin/collectd cp -fa /usr/share/doc/collectd/examples/collection.cgi /usr/lib/cgi-bin/collectd/ configure cpan cpan cpan Config::General cd /etc/lighttpd/conf-enabled ln -s 10-cgi.conf ../conf-available/10-cgi.conf ln -s 10-fastcgi.conf ../conf-available/10-fastcgi.conf ln -s 15-fastcgi-php.conf ../conf-available/15-fastcgi-php.conf ln -s 90-javascript-alias.conf /etc/javascript-common/lighttpd.conf /etc/lighttpd/lighttpd.conf server.modules … Read more

Install Munin node on CentOS 6.4

rpm -Uhv http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm yum install munin-node As you attempt to install Munin node on CentOS 6.4 from EPEL repository, you may encounter following error message: Transaction Check Error:   file /usr/share/man/man3/XML::SAX::Base.3pm.gz conflicts between attempted installs of perl-XML-SAX-Base-1.04-1.el6.rf.noarch and perl-XML-SAX-0.96-7.el6.noarch   file /usr/share/man/man3/XML::SAX::Exception.3pm.gz conflicts between attempted installs of perl-XML-SAX-Base-1.04-1.el6.rf.noarch and perl-XML-SAX-0.96-7.el6.noarch Simply install perl-XML-SAX-0.96-7: yum install perl-XML-SAX-0.96-7.el6.noarch and … Read more