了Php7은 Fastcgi
시작 항목을 통합하여 PHP-FPM이 됩니다. 먼저 종속 库 Ryum -y install libjpeg libjpeg-devel libpng libpng-devel freetype freetype-defel libxml2 libxml2-devel pcre-devel curl-devel libxslt-develE
// 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-fpmcp /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 중국어 웹사이트의 기타 관련 기사를 참조하세요!