1. 程式人生 > >LNMP編譯安裝遇到問題歸總

LNMP編譯安裝遇到問題歸總

編譯 lnmp 安裝

LNMP編譯安裝遇到問題歸總


1、錯誤:configure: error: freetype-config not found.

解決:yum install freetype-devel


2、錯誤:configure: error: libevent >= 1.4.11 could not be found

解決:yum -y install libevent libevent-devel


3、錯誤:configure: error: Please reinstall the mysql distributio

解決:yum -y install mysql-devel


4、錯誤:make: *** [sapi/fpm/php-fpm] error 1

解決:用make ZEND_EXTRA_LIBS=‘-liconv‘編譯


5、錯誤:configure: error: XML configuration could not be found
解決:yum -y install libxml2 libxml2-devel


6、錯誤:configure: error: No curses/termcap library found
解決:yum -y install ncurses ncurses-devel


7、錯誤:configure: error: xml2-config not found


解決:yum -y install libxml2 libxml2-devel


8、錯誤:configure: error: Cannot find OpenSSL‘s <evp.h>
解決:yum install openssl openssl-devel


9、錯誤:configure: error: Please reinstall the libcurl distribution -easy.h should be in <curl-dir>/include/curl/
解決:yum install curl curl-devel


10、錯誤:configure: error: Cannot find ldap.h


解決:yum install openldap openldap-devel


11、錯誤:configure: error: libjpeg.(aso) not found
解決:yum install libjpeglibjpeg -devel


12、錯誤:configure: error: libpng.(aso) not found.
解決:yum install libpnglibpng –devel


13、錯誤:onfigure: error: freetype.h not found.
解決:yum install freetype-devel


14、錯誤:configure: error: cannot find output from lex; giving up
解決:yum -y install flex


15、錯誤:configure: error: mod_deflate has been requested but can not be built due to prerequisite failures
解決:yum -y install zlib-devel openssl-devel


16、錯誤:Configure: error: Unable to locate gmp.h
解決:yum install gmp-devel


17、錯誤:Configure: error: Cannot find MySQL header files under /usr. Note that the MySQL client library is not bundled anymore!
解決:yum install mysql-devel


18、安裝php: ./configure configure: error: XML configuration could not be found
解決:yum -y install libxml2 libxml2-devel

19、Cannot find OpenSSL‘s <evp.h>
解決:yum install openssl openssl-devel

20、 Configure: error: xml2-config not found. Please check your libxml2 installation.
解決:#yum install libxml2 libxml2-devel

21、Checking for pkg-config… /usr/bin/pkg-config configure: error: Cannot find OpenSSL‘s <evp.h>
解決:yum install openssl openssl-devel

22、 Configure: error: Please reinstall the BZip2 distribution
解決: yum install bzip2 bzip2-devel

23、 Configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/
解決: yum install curl curl-devel

24、Configure: error: libjpeg.(also) not found.
解決: yum install libjpeg libjpeg-devel

25、Configure: error: libpng.(also) not found.
解決:yum install libpng libpng-devel

26、 Configure: error: freetype.h not found.
#yum install freetype-devel

27、 Configure: error: Unable to locate gmp.h
# yum install gmp-devel

28、Configure: error: Cannot find MySQL header files under /usr. Note that the MySQL client library is not bundled anymore!
# yum install mysql-devel

29、 Configure: error: Please reinstall the ncurses distribution
# yum install ncurses ncurses-devel

30、 Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h‘ not found!
# yum install unixODBC-devel

31、 Configure: error: Cannot find pspell
# yum install pspell-devel

32、configure: error: mcrypt.h not found. Please reinstall libmcrypt.
# yum install libmcrypt libmcrypt-devel


33、Configure: error: snmp.h not found. Check your SNMP installation.
解決: yum install net-snmp net-snmp-devel


本文出自 “boyhack” 博客,請務必保留此出處http://461205160.blog.51cto.com/274918/1963478

LNMP編譯安裝遇到問題歸總