How to Monitor Apache Information in Real Time with “GoAccess”

After playing around with Apachetop. Today I came across another similar program called GoAccess, which is a utility that allows you to analyze log files from your web server (Apache)

Setting up GoAccess for “Debian-Based Distributions”

Before we install GoAccess, Let’s first install some required dependency’s Launch the terminal and run this command:

sudo apt-get install libncurses5-dev libglib2.0-dev libgeoip-dev

Once thats installed, we now what to install GoAccess

GoAccess is available under Ubuntu natty. You should be able to add a line to your /etc/apt/sources.list like this:

nano /etc/apt/sources.list
deb http://ftp.de.debian.org/debian sid main
sudo apt-get update
sudo apt-get install goaccess

Leave a comment