컴 파일 설치 PHP 7 및 Redis 확장 설치 Swole 확장

컴 파일 설치 PHP 7 및 Redis 확장 설치 Swole 확장
php 7 을 컴 파일 하 는 기계 에 php 5.3 이상 의 버 전 을 컴 파일 하여 라 이브 러 리 에 의존 하 게 되 었 습 니 다.
이 php 7 은 fpm - php 로 컴 파일 되 어 사 용 됩 니 다.
apache 라면 컴 파일 매개 변 수 는?
--with-apxs2=/usr/local/apache/bin/apxs

컴 파일 설치 php 7
wget -c http://www.php.net/distributions/php-7.0.0.tar.gz
tar zxvf php-7.0.0.tar.gz
cd php-7.0.0

./configure \
--prefix=/usr/local/php7 \
--with-config-file-path=/usr/local/php7/etc \
--enable-fpm \
--with-fpm-user=www \
--with-fpm-group=www \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-iconv-dir \
--with-freetype-dir=/usr/local/freetype \
--with-jpeg-dir -\
-with-png-dir \
--with-zlib \
--with-libxml-dir=/usr \
--enable-xml \
--disable-rpath \
--enable-bcmath \
--enable-shmop \
--enable-sysvsem \
--enable-inline-optimization \
--with-curl \
--enable-mbregex \
--enable-mbstring \
--with-mcrypt \
--enable-ftp \
--with-gd \
--enable-gd-native-ttf \
--with-openssl \
--with-mhash \
--enable-pcntl \
--enable-sockets \
--with-xmlrpc \
--enable-zip \
--enable-soap \
--with-gettext \
--disable-fileinfo \
--enable-opcache

make ZEND_EXTRA_LIBS='-liconv'

make install

cp php.ini-production /usr/local/php7/etc/php.ini

cd ..

php 7 을 설치 한 redis 확장 지원 컴 파일
wget -c https://github.com/phpredis/phpredis/archive/php7.zip
unzip php7.zip

cd phpredis-php7
/usr/local/php7/bin/phpize
./configure --with-php-config=/usr/local/php7/bin/php-config
make
make install
cd ..

/ usr / local / php 7 / etc / php. ini 에 extension = redis. so 추가
php 7 을 설치 한 swoole 컴 파일
wget -c https://github.com/swoole/swoole-src/archive/swoole-1.7.21-stable.tar.gz
tar zxvf swoole-1.7.21-stable.tar.gz
cd swoole-src-swoole-1.7.21-stable/
/usr/local/php7/bin/phpize
./configure --with-php-config=/usr/local/php7/bin/php-config
make
make install
cd ..

/ usr / local / php 7 / etc / php. ini 에 extension = swoole. so 추가
참고:
http://www.iamle.com/archives/1989.html
http://www.yiibai.com/redis/redis_php.html

좋은 웹페이지 즐겨찾기