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

溫馨提示×

溫馨提示×

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

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

lamp 源碼安裝之 centos6.5源碼安裝之php5.6.9

發布時間:2020-10-23 18:01:02 來源:網絡 閱讀:1312 作者:芥蔚 欄目:web開發
  • 下載php5.6.9包并解壓

[root@localhost ~]# wget http://cn2.php.net/distributions/php-5.6.9.tar.bz2

[root@localhost ~]# tar xf php-5.6.9.tar.bz2

  • 編譯安裝

我的編譯選項如下

--prefix=/usr/local/php:定義安裝的路徑

--with-mysql=/usr/local/mysql :指定mysql安裝目錄

--with-mysqli=/usr/local/mysql/bin/mysql_config

--with-openssl:Include OpenSSL support (requires OpenSSL >= 0.9.6)

--enable-mbstring :允許多字節的字符串支持,這樣可支持中文等字體

--with-freetype-dir: Set the path to FreeType 2 install prefix

--with-jpeg-dir :GD: Set the path to libjpeg install prefix

--with-png-dir :GD: Set the path to libpng install prefix

--with-zlib :--with-zlib=DIR         Include ZLIB support (requires zlib >= 1.0.9)

--with-libxml-dir=/usr :得先安裝libxml2

--enable-xml :支持擴展標記語言

--enable-sockets :支持sockets

--with-apxs2=/usr/local/apache/bin/apxs :構建動態模塊2.0支持支持,這里意味著在你的/etc/httpd/httpd.conf中.,如果希望使用fastcgi那么請替換為enable-fpm

--with-mcrypt :提供加密支持

--with-config-file-path=/etc :在/etc目錄下生成配置文件/etc/php.ini

--with-config-file-scan-dir=/etc/php.d :在/etc/php.d目錄下有分配置文件

--with-bz2 :支持bz2壓縮

--enable-maintainer-zts:支持線程的模塊,如果使用prefork請不要加入該選項,可通過命令httpd V顯示當前加載的模塊

[root@localhost php-5.6.9]#./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml  --enable-sockets --with-apxs2=/usr/local/apache/bin/apxs --with-mcrypt  --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-bz2  --enable-maintainer-zts

由于軟件太多,所以先編譯一下試試

  • 謝天謝地,只報了一個錯誤,有的錯誤可以參閱http://www.jb51.net/article/37487.htm這位大哥寫的文章

configure: error: mcrypt.h not found. Please reinstall libmcrypt.

下載libmcrypt,yum初始源里面并沒有,所以去別處下載

下載這四個包并安裝,如果不想下載,請自己更新163或其他源,親測http://jingyan.baidu.com/article/d2b1d1027b76c75c7e37d4d0.html可以,更新挺久的,2h左右,最后我的可以yum找到這幾個包了,如果不想更新源,請按照下面步驟

[root@localhost ~]# wget {ftp://rpmfind.net/linux/epel/6/x86_64/libmcrypt-2.5.8-9.el6.x86_64.rpm,ftp://rpmfind.net/linux/epel/6/x86_64/libmcrypt-devel-2.5.8-9.el6.x86_64.rpm}

[root@localhost ~]# wget {ftp://rpmfind.net/linux/epel/6/x86_64/mhash-devel-0.9.9.9-3.el6.x86_64.rpm,ftp://rpmfind.net/linux/epel/6/x86_64/mhash-0.9.9.9-3.el6.x86_64.rpm}

中間可能會有說NOKEY,被我忽略了

再重新編譯下試試,如果最后幾行是create….就是成功了

[root@localhost php-5.6.9]# make&&make install

[root@localhost php-5.6.9]# cp php.ini-production  /etc/php.ini

  • 解決與httpd的聯系,如果啟動不了,請把自己的防火墻和selinux關掉哦

    a)在指定行添加 AddType  application/x-httpd-php .php .phtml

    b)在指定行修改 DirectoryIndex index.html index.php

  • 測試php是否正常運行

    修改網頁主頁為Index.php,把之前的index.html備份或者刪除

    [root@localhost htdocs]# cat index.php

    <html>

    <body>

    <h2>it works!</h2>

    </body>

    </html>

    <?php

    phpinfo();

    ?>

    具體我不截圖了,很多之前編譯加載的模塊被enabled,可以使用

  • 測試與mysql的連接

    [root@localhost htdocs]# cat index.php

    if ($conn)

      echo "success!";

    else

      echo "failure!";

    ?>

  • 安裝php的xcache3.0(負責加速解析php代碼)擴展

    下載安裝包,編譯安裝

    下面這部分,針對php5.4可用

    [root@localhost ~]# wget http://xcache.lighttpd.net/pub/Releases/3.0.1/xcache-3.0.1.tar.gz

    [root@localhost ~]# tar xf xcache-3.0.1.tar.gz

    [root@localhost ~]# cd xcache-3.0.1

    [root@localhost xcache-3.0.1]# /usr/local/php/bin/phpize         #phpize是準備一個php擴展準備編譯,第一層次的檢查

    Configuring for:

    PHP Api Version:         20131106

    Zend Module Api No:      20131226

    Zend Extension Api No:   220131226

    編譯指定哪個擴展(xcache),php-config是負責解析這個擴展并編譯的,相當于檢閱吧

    [root@localhost xcache-3.0.1]# ./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config

    [root@localhost xcache-3.0.1]# make&&make install


    /root/xcache-3.0.1/xcache.c: In function 'zif_xcache_get_special_value':

    /root/xcache-3.0.1/xcache.c:324: error: 'IS_CONSTANT_ARRAY' undeclared (first use in this function)

    /root/xcache-3.0.1/xcache.c:324: error: (Each undeclared identifier is reported only once

    /root/xcache-3.0.1/xcache.c:324: error: for each function it appears in.)

    make: *** [xcache.lo] Error 1


    上面的內容會報錯,原因是php5.6  xcache3.0并不支持,所以官網下載最新版,所以還是多去官網或權威網站比較好

    [root@localhost ~]# wget http://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz


[root@localhost~]# tar xzf xcache-3.2.0.tar.gz

[root@localhost~]# cd xcache-3.2.0

[root@localhostxcache-3.2.0]# /usr/local/php/bin/phpize

Configuringfor:

PHPApi Version:         20131106

ZendModule Api No:      20131226

ZendExtension Api No:   220131226

[root@localhostxcache-3.2.0]# ./configure --enable-xcache--with-php-config=/usr/local/php/bin/php-config

 

[root@localhostxcache-3.2.0]#make&&make install

 

Installingshared extensions:    /usr/local/php/lib/php/extensions/no-debug-zts-20131226/

 

終于安裝好了,看來編譯環境和軟件版本等都需要考慮

把主配置文件放到php的碎片配置小分隊

[root@localhostxcache-3.2.0]# mkdir /etc/php.d

[root@localhostxcache-3.2.0]# cp xcache.ini /etc/php.d/

修改/etc/php.d/xcache.ini文件中的指定地方

extension= /usr/local/php/lib/php/extensions/no-debug-zts-20131226/xcache.so

 

重啟服務

[root@localhostxcache-3.2.0]# service httpd restart

Stoppinghttpd:                                           [  OK  ]

Startinghttpd:                                             [ OK  ]

再次打開網頁發現有了這個模塊支持

lamp 源碼安裝之 centos6.5源碼安裝之php5.6.9 

向AI問一下細節

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

AI

清丰县| 汪清县| 海原县| 石泉县| 汉中市| 平昌县| 永安市| 独山县| 黔西| 锡林郭勒盟| 青河县| 绩溪县| 夏河县| 公主岭市| 盘山县| 东阳市| 铜鼓县| 永城市| 会东县| 墨竹工卡县| 沙河市| 澎湖县| 香格里拉县| 仪陇县| 西峡县| 额敏县| 大悟县| 庆元县| 清涧县| 建湖县| 海南省| 靖江市| 隆安县| 丹凤县| 大洼县| 临邑县| 布尔津县| 绥芬河市| 宜城市| 门源| 宝应县|