반응형
## 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
반응형
'OS > CentOS' 카테고리의 다른 글
| DNS Cache 구성하기 (1) | 2023.11.17 |
|---|---|
| SSL 체크 스크립트 (0) | 2023.05.11 |
| dnsmasq 설치 후 질의 통계 확인 하기 (0) | 2023.01.16 |
| dnsmasq를 사용하여 DNS 서버 설정하기 (DNS cache) (0) | 2023.01.13 |
| openssl 버전업 (CentOS 7.x에서 openssl 버전업) (0) | 2022.02.22 |