91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux下編譯安裝配置php5.6.30過程

發布時間:2020-07-03 01:59:09 來源:網絡 閱讀:10589 作者:丶Darius 欄目:web開發

在第一次編譯安裝php5.6.30失敗后,參考了http://www.phpworld.cn/system/php/11.html的一些內容,第二次編譯安裝成功,特此記錄過程。

一、編譯安裝php5.6.30

安裝環境:

# cat /etc/redhat-release 
CentOS release 6.8 (Final)
# /application/nginx/sbin/nginx -v
nginx version: nginx/1.6.3

下載php5.6.30安裝包

wget http://cn2.php.net/distributions/php-5.6.30.tar.bz2

解壓

tar -xjf php-5.6.30.tar.bz2

安裝所需依賴包

# 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

安裝libiconv庫

wget 
tar zxf libiconv-1.14.tar.gz 
cd libiconv-1.14
./configure --prefix=/usr/local/libiconv
make
make install

開始安裝 php

[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

linux下編譯安裝配置php5.6.30過程

make 編譯

[root@darius php-5.6.30]# make
...
...
...
Build complete.
Don't forget to run 'make test'.

[root@darius php-5.6.30]# make test

make test的結果報了一些問題,我沒有理會,繼續安裝了

linux下編譯安裝配置php5.6.30過程

執行make install

[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

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-fpm.conf

pid = run/php-fpm.pid  #取消前面的分號

修改php-ini.conf

到:disable_functions=

修改為:

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

#列出PHP可以禁用的函數,如果某些程序需要用到這個函數,可以刪除,取消禁用。

找到:;date.timezone =

修改為:

date.timezone = PRC #設置時區

找到:expose_php = On

修改為:

expose_php = Off #禁止顯示php版本的信息

找到:short_open_tag = Off

修改為:

short_open_tag = ON #支持php短標簽

注意:short_open_tag 必須打開.開啟以后可以使用PHP的段標簽:()。同時,只有開啟這個才可以使用 <?= 以代替 <? echo 。有一些開源系統里會使用短標簽,如果不打開的話會報錯。

找到opcache.enable=0

修改為

opcache.enable=1 #php支持opcode緩存

找到:;opcache.enable_cli=1 #php支持opcode緩存

修改為:

opcache.enable_cli=0

在最后一行添加:

zend_extension=opcache.so #開啟opcode緩存功能

:wq  #保存退出

配置nginx.conf

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

啟動php-fpm,重啟nginx,并測試結果

/application/php/sbin/php-fpm -c /application/php/etc/php.ini -y /application/php/etc/php-fpm.conf
/application/nginx/sbin/nginx -s reload

linux下編譯安裝配置php5.6.30過程

linux下編譯安裝配置php5.6.30過程


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

土默特左旗| 葫芦岛市| 曲靖市| 岳阳县| 蒙山县| 墨竹工卡县| 丁青县| 电白县| 木兰县| 金堂县| 洛浦县| 临泉县| 涿州市| 庄浪县| 靖西县| 长兴县| 龙海市| 大兴区| 阿巴嘎旗| 潮州市| 蕉岭县| 堆龙德庆县| 仁布县| 洛隆县| 临武县| 清新县| 铜山县| 开平市| 历史| 兰溪市| 木兰县| 黄龙县| 兴隆县| 秀山| 陆川县| 浦城县| 临夏县| 璧山县| 吴川市| 黑龙江省| 宝应县|