Tag Archives : 리눅스 configure 오류
./configure: error: the GeoIP module requires the GeoIP library. You can either do not enable the module or install the library.
리눅스에서 configure를 하다보면 위와같은 error를 또 목격할수 있을것이다.. 이유는 GeoIP모듈을 사용하기 위해서는 GeoIP 라이브러리를 설치하라는 뜻이다...
./configure: error: the HTTP XSLT module requires the libxml2/libxslt libraries. You can either do not enable the module or install the libraries.
./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 이다. ...