apache:
創(chuàng)新互聯(lián)建站是一家專業(yè)提供羅田企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站建設(shè)、成都網(wǎng)站制作、H5場景定制、小程序制作等業(yè)務(wù)。10年已為羅田眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。
問題:
安裝apache的時(shí)候入到 error: mod_deflate has been requested but can not be built due to prerequisite failures的錯(cuò)誤。
解決:
沒有安裝zlib包。運(yùn)行命令:
yum install zlib-devel
PHP:
問題:
編譯安裝php出錯(cuò)mcrypt.h not found. Please reinstall libmcrypt
yum install libmcrypt libmcrypt-devel之后編譯,還是報(bào)錯(cuò)。
解決:
編譯PHP時(shí), --with-mcrypt=/usr/local/libmcrypt/ 加入mcrypt路徑。即可解決問題。
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/php/etc --with-MySQL=/usr/local/mysql --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt=/usr/local/libmcrypt/--enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif --disable-ipv6
問題:
configure: error: xml2-config not found. Please check your libxml2 installation.
解決:
yum install -y libxml2-devel
總結(jié):編譯安裝LAMP前,把事先需要安裝的庫用yum安裝下。避免發(fā)生一些錯(cuò)誤。
yum install -y gcc gcc-c++ make zlib zlib-devel pcre pcre-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers
再遇到問題,根據(jù)錯(cuò)誤提示。解決。一般問題都是因?yàn)槿鄙侔惭b所需要的庫導(dǎo)致。