goaccess icon indicating copy to clipboard operation
goaccess copied to clipboard

How to install on a old Ubuntu 14.04?

Open realtebo opened this issue 3 years ago • 2 comments

I have this old server I wish to monitor because is giving us strange behaviours

NAME="Ubuntu"
VERSION="14.04.6 LTS, Trusty Tahr"

There is no repo for goaccess for this specific distro.

Could you help me to find a way?

I tried to force 'buster' as repository but it's too new and on ubuntu 14,04 I cannot install because of library incompatibilities

I tried to compile from source but make hangs with this

configure: error: *** Missing development files for libmaxminddb library.

realtebo avatar Jul 29 '21 07:07 realtebo

You can try to build as:

$ wget https://tar.goaccess.io/goaccess-1.5.1.tar.gz
$ tar -xzvf goaccess-1.5.1.tar.gz
$ cd goaccess-1.5.1/
$ ./configure
$ make
# make install

Let me know how it goes.

allinurl avatar Jul 29 '21 13:07 allinurl

I tried to compile from source but make hangs with this

configure: error: *** Missing development files for libmaxminddb library.

You can change the default GeoIP implementation from mmdb to (e.g.) legacy when configure'ing.

dertuxmalwieder avatar Aug 02 '21 12:08 dertuxmalwieder