Skip to content

Instantly share code, notes, and snippets.

@itsliupeng
Created April 2, 2015 12:31
Show Gist options
  • Select an option

  • Save itsliupeng/e8e6bc4ca57b42b3abb4 to your computer and use it in GitHub Desktop.

Select an option

Save itsliupeng/e8e6bc4ca57b42b3abb4 to your computer and use it in GitHub Desktop.
apache2
wget -c http://apache.dataguru.cn//httpd/httpd-2.4.12.tar.bz2 && tar -xjf
.configure —prefix=/destination
make && make install
edit conf/httpd.conf
bin/apachectl -k start
MySQL
wget -c http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.23.tar.gz
cmake -DCMAKE_INSTALL_PREFIX:PATH=/destination && make all install
make & make install
参考 http://www.leoox.com/?p=256
PHP
wget -c http://cn2.php.net/distributions/php-5.6.7.tar.bz2
./configure --enable-fpm --enable-mbstring --with-mysql=/home/liup/local/mysql-5.5.37 --with-apxs2=/home/liup/usr/bin/apxs
参考 http://www.ilanni.com/?p=8254
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment