1. php5.6.30 컴파일 및 설치
설치 환경:
# cat /etc/redhat-release CentOS release 6.8 (Final)
php5.6.30 설치 패키지 다운로드
# /application/nginx/sbin/nginx -v nginx version: nginx/1.6.3
압축 풀기
wget http://cn2.php.net/distributions/php-5.6.30.tar.bz2
필수 설치용 종속성 패키지
tar -xjf php-5.6.30.tar.bz2
libiconv 라이브러리 설치
# rpm -qa zlib-devel libxm12-devel libjpeg-devel libjpeg-turbo-devel libiconv-devel freetype-devel libpng-devel libpng-devel gd-devel libcurl-devel libxslt-devel # yum install zlib-devel libxm12-devel libjpeg-devel libjpeg-turbo-devel libiconv-devel freetype-devel libpng-devel libpng-devel gd-devel libcurl-devel libxslt-devel -y
php 설치 시작
wget tar zxf libiconv-1.14.tar.gz cd libiconv-1.14 ./configure --prefix=/usr/local/libiconv make make install
make compile
[root@darius php-5.6.30]#./configure --prefix=/application/php5.6.30 --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir=/usr/local/libiconv --with-freetype-dir --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-fpm --enable-mbstring --with-mcrypt --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --enable-short-tags --enable-static --with-xsl --with-fpm-user=nginx --with-fpm-group=nginx --enable-ftp --without-pear --disable-phar #因为本机没有pear包,所以选择暂时跳过(--without-pear --disable-phar),等php安装后再补装go-pear
make test 일부 문제가 보고되었지만 무시하고 계속 설치했습니다
make install
[root@darius php-5.6.30]# make ... ... ... Build complete. Don't forget to run 'make test'. [root@darius php-5.6.30]# make test
실행 2. php 구성
[root@darius php-5.6.30]# make install Installing shared extensions: /application/php5.6.30/lib/php/extensions/no-debug-non-zts-20131226/ Installing PHP CLI binary: /application/php5.6.30/bin/ Installing PHP CLI man page: /application/php5.6.30/php/man/man1/ Installing PHP FPM binary: /application/php5.6.30/sbin/ Installing PHP FPM config: /application/php5.6.30/etc/ Installing PHP FPM man page: /application/php5.6.30/php/man/man8/ Installing PHP FPM status page: /application/php5.6.30/php/php/fpm/ Installing PHP CGI binary: /application/php5.6.30/bin/ Installing PHP CGI man page: /application/php5.6.30/php/man/man1/ Installing build environment: /application/php5.6.30/lib/php/build/ Installing header files: /application/php5.6.30/include/php/ Installing helper programs: /application/php5.6.30/bin/ program: phpize program: php-config Installing man pages: /application/php5.6.30/php/man/man1/ page: phpize.1 page: php-config.1 Installing PDO headers: /application/php5.6.30/include/php/ext/pdo/
수정 php-fpm.conf
cp php.ini-production /usr/local/php/etc/php.ini #复制php配置文件到安装目录rm -rf /etc/php.ini #删除系统自带配置文件 ln -s /usr/local/php/etc/php.ini /etc/php.ini #添加软链接到 /etc目录 cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf #拷贝模板文件为php-fpm配置文件 ln -s /usr/local/php/etc/php-fpm.conf /etc/php-fpm.conf #添加软连接到 /etc目录
php-ini.conf
를 수정하여 다음을 찾습니다.
기능을 비활성화할 수 있으며, 일부 프로그램에서 이 기능을 사용해야 하는 경우 삭제하고 비활성화할 수 있습니다.
pid = run/php-fpm.pid #取消前面的分号
발견됨: visible_php = On
수정됨:disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter, ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen, disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error, posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin, posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid, posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid, posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname
date.timezone = PRC #设置时区
대신 =를 사용할 수 있습니다. 일부 오픈 소스 시스템은 짧은 태그를 사용하며, 켜져 있지 않으면 오류가 보고됩니다.
expose_php = Off #禁止显示php版本的信息
로 수정:;opcache.enable_cli=1 #php는 opcode 캐싱을 지원합니다
수정:short_open_tag = ON #支持php短标签
opcache.enable=1 #php支持opcode缓存
:wq #Save
Exitopcache.enable_cli=0
zend_extension=opcache.so #开启opcode缓存功能
php-fpm을 시작하고 nginx를 다시 시작한 후 결과를 테스트하세요
location ~ \.php$ { root html/bbs; #你网页根目录 fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
[root@darius bbs]# cat index.php <?php phpinfo(); ?> [root@darius bbs]# cat index.html bbs.html [root@darius bbs]# pwd /application/nginx/html/bbs
위 내용은 Linux에서 php5.6.30을 컴파일, 설치 및 구성하는 과정에 대한 자세한 설명(그림 및 텍스트)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!