yum安装nginx+mysql+php

浏览:2460 发布日期:2014/02/20 分类:技术分享 关键字: yum安装nginx mysql php
chenglin博客,原文http://www.chenglin.name/linux/nginx/432.html


使用yum安装lnmp,nginx,php,mysql。这里给大家一个简单安装lnmp的方法,对于初学者来说,可以快速高效搭建一个lnmp开发环境。

目录
Nginx + MySQL + PHP安装文档
一、Install
二、Configure
1、修改nginx配置文件nginx.conf
三、Testing
1、检查php可用,建立hello.php
2、检查可连接mysql,建立test_mysql.php
3、输入网址ip/hello.php 和ip/test_mysql.php
四、Error solution
1、libprotobuf-lite.so.6 : cannot found
2、libJudy.so.1 : cannot found
3、Requires: GeoIP Requires: libGeoIP.so.1()(64bit)

环境 –> CentOS6.2 : Nginx + MySQL + PHP
‘◆’代表命令行执行

一、Install


◆ wget http : //nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
◆ rpm - ivh nginx - release - centos - 6 - 0.el6.ngx.noarch.rpm
◆ yum install mysql mysql - server php php - mysql php - fpm nginx
二、Configure
1、修改nginx配置文件nginx.conf
◆vi /etc/nginx/nginx.conf
找到此处:这样改写


location ~ \ . php $ {
set $ web_root / usr / share / nginx / html ;
root $ web_root ;
fastcgi_pass 127.0.0.1 : 9000 ;
fastcgi_index index . php ;
fastcgi_param script_FILENAME $ web_root $ fastcgi_script_name ;
include fastcgi_params ;
}
三、Testing
这里就介绍简单的操作步骤,测试或者更多问题查看原文;

详细内容,请看原文链接 http://www.chenglin.name/linux/nginx/432.html
最佳答案
评论( 相关
后面还有条评论,点击查看>>