본문 바로가기
SW/APM

APM 소스 설치 시 오류 해결 모음

by bigju 2021. 10. 2.

소스 실치시 제일 화나는 것은 오류.

버전이나 방식에 따라 다를수 있습니다..

1. Mysql

checking for termcap functions library... configure: error: No curses/termcap library found

make: *** No targets specified and no makefile found. Stop.

해결 방법

# yum -y install libtermcap-devel ncurses-devel 설치

/bin/rm: cannot remove `libtoolT': No such file or directory

해결 방법

mysql 소스파일 Directory에서 아래 진행

# autoreconf --force --install

# aclocal

# libtoolize --automake --force

# automake --force --add-missing

2. Apache

configure: error: ...No recognized SSL/TLS toolkit detected

해결 방법

# yum -y install openssl-devel

3. PHP

Checking for pkg-config... /usr/bin/pkg-config

configure: error: Cannot find OpenSSL's <evp.h>

해결 방법

# yum -y install openssl-devel

Configure: error: xml2-config not found. Please check your libxml2 installation.

해결 방법

# yum -y install libxml2-devel

Configure: error: Please reinstall the libcurl distribution -

easy.h should be in <curl-dir>/include/curl/

해결 방법

# yum -y install curl-devel

Configure: error: libpng.(also) not found.

해결 방법

# yum -y install libpng-devel

Configure: error: Please reinstall the BZip2 distribution

해결 방법

# yum -y install bzip2-devel

Configure: error: libjpeg.(also) not found.

해결 방법

# yum -y install libjpeg-devel

Checking for unixODBC support... configure: error: ODBC header file '/usr/include/sqlext.h' not found!

해결 방법

# yum -y install unixODBC-devel

configure: error: DBA: Could not find necessary header file(s).

해결 방법

# yum -y install gdbm-devel

Configure: error: Cannot find MySQL header files under /usr.

Note that the MySQL client library is not bundled anymore!

해결 방법

# yum -y install mysql-devel

Configure: error: freetype.h not found.

해결 방법

# yum -y install freetype-devel

Configure: error: Unable to locate gmp.h

해결 방법

# yum -y install gmp-devel

Configure: error: Cannot find pspell

해결 방법

# yum -y install pspell-devel

configure: error: not found. Please reinstall the expat distribution.

해결 방법

# yum -y install expat-devel

Configure: error: Please reinstall the ncurses distribution

해결 방법

# yum -y install ncurses-devel

Configure: error: snmp.h not found. Check your SNMP installation.

해결 방법

# yum -y install net-snmp-devel

'SW > APM' 카테고리의 다른 글

웹로그분석 Tool 설치, web log 확인(AWStats)  (0) 2021.10.24
우분투(Ubuntu) - MariaDB 컴파일 설치 (mysql)  (0) 2021.10.06
NGINX + PHP 컴파일 소스 설치  (0) 2021.09.28
Centos 7 APM YUM 설치  (0) 2021.09.28
Centos7 APM 소스 설치  (0) 2021.09.28

댓글

메인으로가기


    

Big Ju

IT Engineer


항상 답을 위해 노력하는

엔지니어입니다.

 

 

    


 UP!