CentOS下Nginx+PHP安装

1. 安装依赖库

yum -y install gcc automake autoconf libtool make
yum -y install gcc-c++ glibc

yum -y install libmcrypt-devel mhash-devel libxslt-devel \
libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel \
zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel \
ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel \
krb5 krb5-devel libidn libidn-devel openssl openssl-devel

yum -y install pcre-devel


wget http://softlayer.dl.sourceforge.net/sourceforge/mcrypt/libmcrypt-2.5.8.tar.gz

 

2.安装PHP
wget http://cn2.php.net/distributions/php-5.6.8.tar.gz


./configure --prefix=/usr/local/php --enable-fpm --with-mcrypt \
--enable-mbstring --with-curl --disable-debug --disable-rpath \
--enable-inline-optimization --with-bz2 --with-zlib --enable-sockets \
--enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex \
--with-mhash --with-pcre-regex --with-mysql --with-mysqli \
--with-gd --with-jpeg-dir --disable-opcache --with-freetype-dir=/usr/local/freetype --with-pdo-mysql

 

3.安装Nginx
wget wget ftwget http://nginx.org/download/nginx-1.6.0.tar.gz

./configure --with-http_ssl_module --with-pcre

posted @ 2015-05-04 17:16  wkccs  阅读(310)  评论(0编辑  收藏  举报