编译安装php 5.4.4
- sudo echo 'start'
- echo 常见错误:
- echo configure: error: APR not found. Please read the documentation.
- echo 解决办法:
- wget http://labs.renren.com/apache-mirror/apr/apr-1.4.6.tar.bz2
- tar -jxvf apr-1.4.6.tar.bz2
- cd apr-1.4.6
- ./configure --prefix=/usr/local/apr
- make
- sudo make install
- cd ..
- echo 常见错误:
- echo AH00526: Syntax error on line 490 of /usr/local/apache2/conf/httpd.conf:
- echo Unknown filter provider DEFLATE
- echo httpd: Syntax error on line 101 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2/modules/mod_deflate.so into server: /usr/local/apache2/modules/mod_deflate.so: undefined symbol: inflate
- echo 解决办法:
- sudo sed -i "s/LDFLAGS=/"/"/LDFLAGS=/"-lz/"/g" '/usr/local/apr/bin/apr-1-config'
- wget http://labs.renren.com/apache-mirror/apr/apr-util-1.4.1.tar.bz2
- tar -jxvf apr-util-1.4.1.tar.bz2
- cd apr-util-1.4.1
- ./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config
- make
- sudo make install
- cd ..
- echo 常见错误:
- echo configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
- echo 解决办法:
- sudo echo start
- wget http://downloads.sourceforge.net/project/pcre/pcre/8.30/pcre-8.30.zip
- unzip pcre-8.30.zip
- cd pcre-8.30
- ./configure --prefix=/usr/local/pcre
- sudo make
- sudo make install
- cd ..
- echo 常见错误:
- echo checking whether to enable mod_deflate... configure: error: mod_deflate has been requested but can not be built due to prerequisite failures
- echo 解决办法:
- sudo apt-get install -y zlib1g-dev
- echo 开始安装:
- wget http://labs.renren.com/apache-mirror/httpd/httpd-2.4.2.tar.bz2
- tar -jxvf httpd-2.4.2.tar.bz2
- cd httpd-2.4.2
- ./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre --enable-so --enable-rewrite --enable-deflate --with-module=metadata:expires
- make
- sudo make install
- echo 'ExpiresActive On' | sudo tee -a /usr/local/apache2/conf/httpd.conf
- echo 'FileEtag none' | sudo tee -a /usr/local/apache2/conf/httpd.conf
- echo 'SetOutputFilter DEFLATE' | sudo tee -a /usr/local/apache2/conf/httpd.conf
- sudo sed -i "s/#LoadModule deflate_module modules//mod_deflate.so/LoadModule deflate_module modules//mod_deflate.so/g" '/usr/local/apache2/conf/httpd.conf'
- sudo /usr/local/apache2/bin/apachectl start
- cd ..
编译安装mysql 5.5.25a请看: Ubuntu 11.04 x64 编译安装mysql
- sudo apt-get install -y curl libxml2 libxml2-dev libssl-dev sendmail libcurl4-openssl-dev libjpeg-dev libpng-dev libmcrypt-dev
- wget -O php-5.4.4.tar.bz2 http://cn.php.net/get/php-5.4.4.tar.bz2/from/this/mirror
- tar -jxvf php-5.4.4.tar.bz2
- cd php-5.4.4
- ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-curl --with-mcrypt --enable-mbstring --enable-pdo --with-pdo-mysql=mysqlnd --with-mysqli=mysqlnd --with-openssl --with-imap-ssl --with-gd --with-jpeg-dir=/usr/lib/ --with-png-dir=/usr/lib/ --enable-exif --enable-zip
- make
- sudo make install
- sudo cp php.ini-development /usr/local/php/lib/php.ini
- sudo rm /usr/bin/php
- sudo ln -s /usr/local/php/bin/php /usr/bin/php
- echo 'AddHandler application/x-httpd-php .php' | sudo tee -a /usr/local/apache2/conf/httpd.conf
- sudo sed -i "s/;include_path = /".://php//includes/"/include_path = /"//usr//local//php//lib//php/"/g" '/usr/local/php/lib/php.ini'
- sudo /usr/local/apache2/bin/apachectl restart
新闻热点
疑难解答