Category Archives : Ubuntu RSS feed for this section
./configure: error: SSL modules require the OpenSSL library. You can either do not enable the modules, or install the OpenSSL library into the system, or build the OpenSSL library statically from the source with nginx by using –with-openssl= option.
configure 할때 위와같이 SSL modules을 설치하는데 OpenSSL library가 필요하다고 한다. Ubuntu 18.04 에서 OpenSSL library를 설치하는 명령어는 apt install libssl-dev 이다. ...
./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using –without-http_gzip_module option, or install the zlib library into the system, or build the zlib library statically from the source with nginx by using –with-zlib= option.
잘 읽어보면 이제 알겠지?? gzip 모듈을 설치하려고 하는데 zlib 라이브러리가 필요하신다… zlib 라이브러리는 zlib1g 와 zlib1g-dev가 있음. 이걸 설치해주...
./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using –without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using –with-pcre= option.
./configure: error: C compiler cc is not found (configure 오류발생)
ELK 보안을 위한 X-Pack 설치하기.
X-Pack은 보안, 알림, 모니터링, 보고, 그래프 기능을 설치하기 편리한 단일 패키지로 번들 구성한 Elastic Stack 확장 프로그램 이다. X-Pack 구성 요소는 서로...
ELK 스택 구축하기.MetricBeat(모니터링 시스템 목표)
ELK 스택 구축하기.Kibana(모니터링 시스템 목표)
Elasticsearch를 설치했으니 직접눈으로 확인을 해야겠다! 싶으니까 Kibana를 먼저 설치하기로했다. 설치방법은 Elasticsearch와 크게 다르지않다. https://www.elast...
ELK 스택 구축하기.Elasticsearch(모니터링 시스템 목표)
여기서 Beats는 생소할수도있는데 에이전트라고 생각하면 편하다. 목표는 ELK 스택을 통해서 내가 운영하고있는 서버들의 시스템, 네트워크 정보와 Nginx ...