Tag Archives : configure error
./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 이다. ...
./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가 있음. 이걸 설치해주...