>  기사  >  백엔드 개발  >  PHP의 설치 예에 대한 자세한 설명

PHP의 설치 예에 대한 자세한 설명

黄舟
黄舟원래의
2017-09-11 09:24:431383검색

了Php7은 Fastcgi

시작 항목을 통합하여 PHP-FPM

이 됩니다. 먼저 종속 库 R
yum -y install libjpeg libjpeg-devel libpng libpng-devel freetype freetype-defel libxml2 libxml2-devel pcre-devel curl-devel libxslt-devel
E

// PHP


 wget http://php.net/distributions/php-7.0.23.tar.xz

다운로드 // 압축 해제


 xz -d php-7.0.23.tar.xz

//Unpacking


tar xvf php-7.0.23.tarcd php-7.0.23

//컴파일 관련 구성 옵션 google Baidu 쿼리에 설명이 있습니다


# ./configure --prefix=/usr/local/php \

 --sbin-path=/usr/sbin/php \

 --bin-path=/usr/bin/php \

 --with-curl \

 --with-freetype-dir \

 --with-gd \

 --with-gettext \

 --with-iconv-dir \

 --with-kerberos \

 --with-libdir=lib64 \

 --with-libxml-dir \

 --with-mysqli \

 --with-openssl \

 --with-pcre-regex \

 --with-pdo-mysql \

 --with-pdo-sqlite \

 --with-pear \

 --with-png-dir \

 --with-xmlrpc \

 --with-xsl \

 --with-zlib \

 --enable-fpm \

 --enable-bcmath \

 --enable-libxml \

 --enable-inline-optimization \

 --enable-gd-native-ttf \

 --enable-mbregex \

 --enable-mbstring \

 --enable-opcache \

 --enable-pcntl \

 --enable-shmop \

 --enable-soap \

 --enable-sockets \

 --enable-sysvsem \

 --enable-xml \

 --enable-zip

참고: "구성에 오류가 있거나 종속성 패키지가 누락되었는지 주의하세요. 그렇다면 직접 수행하세요. "

컴파일 및 설치

make&&make install

구성 파일 cp

//php-fpm

 cp /usr/local/php/etc/php-fpm.conf.default    
 /usr/local/php/etc/php-fpm.conf
참조 파일//php-fpm 시작을 init.d로 이동 boot
cp -R ./sapi/fpm/php-fpm   
/etc/init.d/php-fpm

# php -v 다음 프롬프트가 나타나면 정상입니다.

위 내용은 PHP의 설치 예에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.