계정과 PW를 바꾸기 앞서 사용하고있는 mysql or MariaDB의 버전을 확인해야 하는데 확인하는 방법은 두가지가있다. 접속해서 확인하는 방법. mysql -V 명령어...
Category Archives : Linux RSS feed for this section
Ubuntu 18.04 LTS 설치하기.
mariadb 10.4 error // 재설치(remove,install)
mariadb 10.4 버전을 설치했는데 명령어를 실행해도 아래와 같은 오류가 뜨면 진행이 안됐다. ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ...
리눅스 압축하기, 압축 풀기 명령어.(gzip, tar)
리눅스를 사용하다보면 패키지 or 소스파일을 받을때 Wget으로 파일을 받게되는데 압축방식은 대부분 동일하다 gzip, tar 와같다. 이렇게 파일을 받아보면...
Linux NMAP 명령어. 사용법 및 예제
not binary compatible
./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 image filter module requires the GD library. You can either do not enable the module or install the libraries.
리눅스에서 configure를 하다보면 위와같은 error를 또 목격할수 있을것이다.. 이유는 HTTP image filter 모듈을 사용하기 위해서는 GD 라이브러리를 설치하라는...
./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 이다. ...