国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開(kāi)通VIP
yum安裝LNMP

yum安裝LNMP

(2011-04-14 21:03:20)
標(biāo)簽:

雜談

分類: LNMP
一、關(guān)閉selinux
關(guān)閉SElinux:修改/etc/selinux/config文件中的SELINUX=  disabled
 
添加最新源
1.添加yum repo php5.2.x
vi /etc/yum.repos.d/CentOS-Testing.repo
[c5-testing]
name=CentOS-5 Testing
baseurl=http://dev.centos.org/centos/$releasever/testing/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing
priority=1
2.升級(jí)
yum upgrade php
二、使用yum 程序安裝所需開(kāi)發(fā)包
#yum -y install ntp make openssl openssl-devel pcre pcre-devellibpng libpng-devel libjpeg-6b libjpeg-devel-6b freetypefreetype-devel gd gd-devel zlib zlib-devel gcc gcc-c++ libXpmlibXpm-devel ncurses ncurses-devel libmcrypt libmcrypt-devellibxml2 libxml2-devel imake autoconf automake screen sysstatcompat-libstdc++-33 curl curl-devel
三、卸載httpd
yumremove httpd
四、安裝mysql 

yum installmysql mysql-server mysql-devel
       如果在root用戶下:先給root用戶設(shè)置密碼:(需要啟動(dòng)mysql)

      mysqladmin-u root password "這里寫密碼"

      mysql-uroot-p         (加-p參數(shù)是要求輸入密碼)

 

五、安裝nginx

1、導(dǎo)入軟件庫(kù)

  1. rpm -Uvhhttp://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm

2、yum安裝nginx

  1. yum install nginx

3、添加到啟動(dòng)項(xiàng)并啟動(dòng)nginx

  1. chkconfig --levels 235 nginx on
  2. /etc/init.d/nginx start

 

六、安裝php

1.yum install php lighttpd-fastcgi php-cli php-mysql php-gdphp-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstringphp-mcrypt php-mssql php-snmp php-soap php-tidy php-commonphp-devel

2.編輯文件php.ini,在文件末尾添加
cgi.fix_pathinfo= 1

2、編輯文件php.ini,在文件末尾添加cgi.fix_pathinfo =1

  1. vi /etc/php.ini

3、執(zhí)行以下命令以啟動(dòng)php fastcgi守護(hù)進(jìn)程,并以用戶組nginx和用戶nginx身份運(yùn)行。

  1. /usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u nginx -g nginx -f/usr/bin/php-cgi -P /var/run/fastcgi-php.pid

4、設(shè)置開(kāi)機(jī)啟動(dòng)fastcgi.
編輯文件 vi /etc/rc.local,增加如下代碼:

  1. /usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u nginx -g nginx -f/usr/bin/php-cgi -P /var/run/fastcgi-php.pid

修改nginx配置文件,添加fastcgi支持

1、修改nginx.conf文件
vi /etc/nginx/nginx.conf
配置文件部分代碼

路徑是:/usr/share/nginx/html

 

 

  1. [...]
  2.     server{
  3.        listen      80;
  4.        server_name _;
  5.        #charset koi8-r;
  6.        #access_log logs/host.access.log  main;
  7.        location / {
  8.           root  /usr/share/nginx/html;
  9.           index  index.php index.html index.htm;
  10.        }
  11.        error_page 404            /404.html;
  12.        location = /404.html {
  13.           root  /usr/share/nginx/html;
  14.        }
  15.        # redirect server error pagesto the static page /50x.html
  16.        #
  17.        error_page  500 502 503 504  /50x.html;
  18.        location = /50x.html {
  19.           root  /usr/share/nginx/html;
  20.        }
  21.        # proxy the PHP scripts toApache listening on 127.0.0.1:80
  22.        #
  23.        #location ~ \.php$ {
  24.          proxy_pass  http://127.0.0.1;
  25.        #}
  26.  
  27.        # pass the PHP scripts toFastCGI server listening on 127.0.0.1:9000
  28.        #
  29.        location ~ \.php$ {
  30.           root         /usr/share/nginx/html;
  31.           fastcgi_pass  127.0.0.1:9000;
  32.           fastcgi_index  index.php;
  33.           fastcgi_param SCRIPT_FILENAME  /usr/share/nginx/html$fastcgi_script_name;
  34.           include       fastcgi_params;
  35.        }
  36.        # deny access to .htaccessfiles, if Apache's document root
  37.        # concurs with nginx'sone
  38.        #
  39.        location~ /\.ht {
  40.           deny all;
  41.        }
  42.     }
  43. [...]

紅色標(biāo)注是修改過(guò)的。關(guān)鍵修改的部分:29~35行。
2、重啟nginx

  1. /etc/init.d/nginx restart

3、建立info.php文件

  1. vi /usr/share/nginx/html/info.php

添加如下代碼:

  1. <?php
  2. phpinfo();
  3. ?>

在瀏覽器打開(kāi)測(cè)試是否正常,如http://www.zhumaohai.com/info.php。

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
阿里云騰訊云服務(wù)器手動(dòng)配置WordPress網(wǎng)站教程
CentOS 7下安裝LNMP服務(wù)器 – 戊辰人博客
lnmp環(huán)境快速搭建及原理解析
centOS7安裝nginx及nginx配置
RHEL / CentOS 7 安裝 Nginx, MySQL, PHP (LEMP) | Linux 技術(shù)手札
LNMP Wordpress phpMyAdmin的部署記錄
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服