Advertisement
fduran

Linux stats with munin

Apr 21st, 2011
497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.47 KB | None | 0 0
  1. # munin stats http://munin-monitoring.org/
  2. # www.fduran.com
  3.  
  4. apt-get update; apt-get install munin munin-node
  5.  
  6. # Apache: add at the end of .conf file or as new sites-available:
  7. # Alias /munin "/var/www/munin"
  8. # you may want to password-protect the directory
  9.  
  10. /etc/init.d/munin-node start
  11. # check with:
  12. netstat -tlpn |grep 4949
  13.  
  14. # set to auto-start upon reboot, pick one
  15. # debian/ubuntu type
  16. update-rc.d munin-node defaults
  17. # redhat type
  18. chkconfig munin-node on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement