OS/CentOS

## Goaccess 설치

Dragonfog.net 2023. 10. 20. 20:06
반응형

## Goaccess 설치

#C 컴파일러 설치
미설치시 발생 에러 : configure: error: no acceptable C compiler found in $PATH

yum install gcc glibc glibc-common gd gd-devel -y

# SSL Library 설치 
미설치 에러 : configure: error: ssl library missing
yum install openssl-devel -y


# Maxminddb 설치 -->  --enable-geoip=mmdb 사용시
미설치 에러configure: error: 
    *** Missing development files for libmaxminddb library.
yum install libmaxminddb

# ncursesw 설치
미설치 에러 : configure: error: *** Missing development libraries for ncursesw
yum install ncurses-devel





wget https://tar.goaccess.io/goaccess-1.8.tar.gz
tar -xzvf goaccess-1.8.tar.gz
cd goaccess-1.8/
./configure --enable-utf8 --enable-geoip=mmdb --enable-debug --with-getline --with-openssl
make
make install

반응형