激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢(xún)熱線(xiàn):0371-60135900 注冊(cè)有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應(yīng)
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補(bǔ)償
        全部產(chǎn)品
        您的位置: 網(wǎng)站首頁(yè) > 幫助中心>文章內(nèi)容

        Nginx安裝方法

        發(fā)布時(shí)間:  2012/7/27 18:10:19

         第一步,安裝PHP
          安裝前先檢查依賴(lài)關(guān)系:
          rpm -ivh php-5.1.6-27.el5.x86_64.rpm
          warning: php-5.1.6-27.el5.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
          error: Failed dependencies:
          httpd-mmn = 20051115 is needed by php-5.1.6-27.el5.x86_64
          php-cli = 5.1.6-27.el5 is needed by php-5.1.6-27.el5.x86_64
          php-common = 5.1.6-27.el5 is needed by php-5.1.6-27.el5.x86_64
          需要以上包!
          1.先安裝httpd-2.2.3-43.el5.x86_64.rpm
          2.安裝php-common-5.1.6-27.el5.x86_64.rpm
          3.安裝php-cli-5.1.6-27.el5.x86_64.rpm
          以上依賴(lài)關(guān)系包安裝完后,安裝PHP
          php-5.1.6-27.el5.x86_64.rpm
          第二步,安裝pcre
          pcre-8.00.tar.gz   解壓執(zhí)行安裝命令 ./configure    make   makeinstall
          第三步,安裝Nginx
          先安裝依賴(lài)關(guān)系
          zlib-devel-1.2.3-3.x86_64.rpm
          openssl-0.9.8e-12.el5_4.6.x86_64.rpm
          e2fsprogs-devel-1.39-23.el5.x86_64.rpm
          keyutils-libs-devel-1.2-1.el5.x86_64.rpm
          libsepol-devel-1.15.2-3.el5.x86_64.rpm
          libselinux-devel-1.33.4-5.5.el5.x86_64.rpm
          krb5-devel-1.6.1-36.el5_4.1.x86_64.rpm
          openssl-devel-0.9.8e-12.el5_4.6.x86_64.rpm
          openssl097a-0.9.7a-9.el5_2.1.x86_64.rpm
          xmlsec1-1.2.9-8.1.1.x86_64.rpm
          xmlsec1-openssl-1.2.9-8.1.1.x86_64.rpm
          libgpg-error-devel-1.4-2.x86_64.rpm
          libgcrypt-devel-1.4.4-5.el5.x86_64.rpm
          libxml2-devel-2.6.26-2.1.2.8.x86_64.rpm
          libxslt-devel-1.1.17-2.el5_2.2.x86_64.rpm
          openssl-devel-0.9.8e-12.el5_4.6.x86_64.rpm
          xmlsec1-devel-1.2.9-8.1.1.x86_64.rpm
          xmlsec1-openssl-devel-1.2.9-8.1.1.x86_64.rpm
          直接去http://nginx.org/ 下載最新版本的,然后就 ./configure, make, make install 普通安裝就行了
          第四步,安裝spawn-fcgi
          去 http://redmine.lighttpd.net/news/2 下載 spawn-fcgi-1.6.0.tar.gz
          解壓 執(zhí)行 ./configure 和 make
          然后在 src 目錄下有個(gè) spawn-fcgi ,
          用 cp -r spawn-fcgi /usr/local/nginx/sbin/spawn-fcgi 拷貝到 nginx 的執(zhí)行目錄
          然后啟動(dòng) spawn-fcgi 方法: ./spawn-fcgi -a 127.0.0.1 -p 9000 -f /usr/bin/php-cgi
          在nginx的執(zhí)行目錄下執(zhí)行
          第五步,配置Nginx
          1. 在下面添加紅色的代碼
          server {
          listen 80;
          server_name localhost;
          #charset koi8-r;
          #access_log logs/host.access.log main;
          location / {
          root html;
          index index.html index.php;
          }
          2. 找到下面的代碼,把注釋去了
          紅色部分是關(guān)鍵,要看 /usr/local/nginx/conf 目錄下面的 fastcgi 文件名字是什么
          location ~ \.php$ {
          root html;
          fastcgi_pass 127.0.0.1:9000;
          fastcgi_index index.php;
          fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
          include fastcgi.conf;
          }
          第六步,啟動(dòng) Nginx
          直接在 /usr/local/nginx/sbin 目錄下 ./nginx 就搞定了
          第七部,修改nginx配置文件
          在配置文件中找到以下字段:
          location ~ \.php$ {
          root           html;
          fastcgi_pass   127.0.0.1:9000;
          fastcgi_index  index.php;
          fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
          include        fastcgi_params;
          將藍(lán)色部分改為 /$document_root$fastcgi_script_name
          重啟nginx(nginx  –s  reload)
          第八步,測(cè)試nginx+php環(huán)境
          創(chuàng)建index.php文件,內(nèi)容為:<?php phpinfo();?>
          第九步,添加啟動(dòng)項(xiàng)
          編輯/etc/rc.local文件,添加如下內(nèi)容
          /usr/local/nginx/sbin/nginx
          /usr/local/nginx/sbin/spawn-fcgi -a 127.0.0.1 -p 9000 -f /usr/bin/php-cgi

        億恩科技地址(ADD):鄭州市黃河路129號(hào)天一大廈608室 郵編(ZIP):450008 傳真(FAX):0371-60123888
           聯(lián)系:億恩小凡
           QQ:89317007
           電話(huà):0371-63322206


        本文出自:億恩科技【mszdt.com】

        服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經(jīng)營(yíng)性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經(jīng)營(yíng)性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經(jīng)營(yíng)性ICP/ISP證:贛B2-20080012
      9. 服務(wù)器/云主機(jī) 24小時(shí)售后服務(wù)電話(huà):0371-60135900
      10. 虛擬主機(jī)/智能建站 24小時(shí)售后服務(wù)電話(huà):0371-60135900
      11. 專(zhuān)注服務(wù)器托管17年
        掃掃關(guān)注-微信公眾號(hào)
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號(hào)總部企業(yè)基地億恩大廈  法律顧問(wèn):河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號(hào)
          0
         
         
         
         

        0371-60135900
        7*24小時(shí)客服服務(wù)熱線(xiàn)