热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

CentOS6.4系统如何使用yum方式安装LNMP环境器环境

下面介绍的是CentOS6.4系统下编译安装LNMP和配置PHP环境具体步骤,感兴趣的朋友可以参考下,希望对你配置php环境有所帮助一、准备工作上pkgs.org下载rmpforge。rpmforge是一个第三方yum源。选择相应的版本下载安装。//安装成功后,清空yumlist并重新
下面介绍的是CentOS 6.4系统下编译安装LNMP和配置PHP环境具体步骤,感兴趣的朋友可以参考下,希望对你配置php环境有所帮助

一、准备工作
上pkgs.org下载rmpforge。rpmforge是一个第三方yum源。
CentOS 6.4系统下编译安装LNMP和配置PHP环境
选择相应的版本下载安装。
// 安装成功后,清空yum list 并 重新获取
[root@pangou Desktop]# yum clean all
Loaded plugins: fastestmirror, refresh-packagekit, security
Cleaning repos: base extras rpmforge updates
Cleaning up Everything
Cleaning up list of fastest mirrors
[root@pangou Desktop]# yum -y list
Loaded plugins: fastestmirror, refresh-packagekit, security
Determining fastest mirrors
// ......
卸载已存在的apache服务和php
[root@pangou Desktop]# yum remove httpd php*
安装development Tools
[root@pangou Desktop]# yum -y groupinstall "Development Tools"

二、安装nginx
创建nginx目录,下载nginx,并解压缩
[root@pangou Downloads]# mkdir nginx
[root@pangou Downloads]# cd nginx/
[root@pangou nginx]# pwd
/root/Downloads/nginx
[root@pangou nginx]# wget http://nginx.org/download/nginx-1.4.0.tar.gz
--2013-04-30 23:13:44-- http://nginx.org/download/nginx-1.4.0.tar.gz
Resolving nginx.org... 206.251.255.63
Connecting to nginx.org|206.251.255.63|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 773451 (755K) [application/octet-stream]
Saving to: “nginx-1.4.0.tar.gz”
100%[================================================================>] 773,451 184K/s in 4.5s
2013-04-30 23:13:48 (166 KB/s) - “nginx-1.4.0.tar.gz” saved [773451/773451]
[root@pangou nginx]# ls
nginx-1.4.0.tar.gz
[root@pangou nginx]# tar -zxvf nginx-1.4.0.tar.gz
[root@pangou nginx]# ls
nginx-1.4.0 nginx-1.4.0.tar.gz
编译安装nginx
// 编译 安装路径/opt/nginx
[root@pangou nginx-1.4.0]# ./configure --prefix=/opt/nginx/
编译中如出现报错如:
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre= option.
就是用yum自行结局依赖关系
[root@pangou nginx-1.4.0]# yum install pcre pcre-devel
然后重新上面的编译
// 编译 安装路径/opt/nginx
[root@pangou nginx-1.4.0]# ./configure --prefix=/opt/nginx/
// 编译成功后
[root@pangou nginx-1.4.0]# make && make install
// 最后安装完成
启动nginx服务
[root@pangou nginx]# cd /opt/nginx/sbin/
[root@pangou sbin]# ./nginx
访问127.0.0.1
服务启动成功。

三、安装php
创建文件夹php,下载php,并解压缩
[root@pangou nginx-1.4.0]# cd /root/Downloads/
[root@pangou Downloads]# mkdir php
[root@pangou Downloads]# cd php/
[root@pangou php]# pwd
/root/Downloads/php
// 下载
[root@pangou php]# wget http://cn2.php.net/get/php-5.4.14.tar.gz/from/this/mirror
// 解压
[root@pangou php]# tar -zxvf php-5.4.14.tar.gz
安装依赖包
[root@pangou php]# yum install -y libxml2-devel libjpeg-devel libpng-devel freetype-devel openssl-devel libcurl-devel libmcrypt-devel
编译php
[root@pangou php]# ls
php-5.4.14 php-5.4.14.tar.gz
[root@pangou php]# cd php-5.4.14
[root@pangou php-5.4.14]# pwd
/root/Downloads/php/php-5.4.14
[root@pangou php-5.4.14]# ls
acinclude.m4 CREDITS ltmain.sh NEWS README.MAILINGLIST_RULES README.TESTING stamp-h.in
aclocal.m4 ext main pear README.namespaces README.TESTING2 stub.c
build EXTENSIONS makedist php5.spec.in README.NEW-OUTPUT-API README.UNIX-BUILD-SYSTEM svnclean.bat
buildconf footer Makefile.frag php.gif README.PARAMETER_PARSING_API README.WIN32-BUILD-SYSTEM tests
buildconf.bat generated_lists Makefile.gcov php.ini-development README.PHP4-TO-PHP5-THIN-CHANGES run-tests.php TSRM
CODING_STANDARDS genfiles Makefile.global php.ini-production README.REDIST.BINS sapi UPGRADING
config.guess header makerpm README.EXTENSIONS README.RELEASE_PROCESS scripts UPGRADING.INTERNALS
config.sub INSTALL missing README.EXT_SKEL README.SELF-CONTAINED-EXTENSIONS server-tests-config.php vcsclean
configure install-sh mkinstalldirs README.GIT-RULES README.STREAMS server-tests.php win32
configure.in LICENSE netware README.input_filter README.SUBMITTING_PATCH snapshot Zend
[root@pangou php-5.4.14]# ./configure --prefix=/opt/php --with-config-file-path=/opt/php/etc --with-mysql=/usr/ --with-mysqli=/usr/bin/mysql_config --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-discard-path --enable-magic-quotes --enable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --enable-fastcgi --enable-fpm --enable-force-cgi-redirect --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --with-mime-magic
// 编译时间可能有点长。。。
// 编译成功后,安装
[root@pangou php-5.4.14]# make && make install
// 安装时间也比较长
安装成功后,php的位置就应该在/opt/php目录下,接下去就是配置
// 复制配置文件到配置目录下
[root@pangou php-5.4.14]# cp /root/Downloads/php/php-5.4.14/php.ini-production /opt/php/etc/php.ini
[root@pangou php-5.4.14]# cp /opt/php/etc/php-fpm.conf.default /opt/php/etc/php-fpm.conf
[root@pangou php-5.4.14]# cd /opt/php/etc/
[root@pangou etc]# ls
php-fpm.conf php-fpm.conf.default php.ini
// 然后配置nginx的配置文件,让其可以运行php
[root@pangou etc]# cd /opt/nginx/conf/
[root@pangou conf]# ls
fastcgi.conf fastcgi_params koi-utf mime.types nginx.conf scgi_params uwsgi_params win-utf
fastcgi.conf.default fastcgi_params.default koi-win mime.types.default nginx.conf.default scgi_params.default uwsgi_params.default
[root@pangou conf]# vim nginx.conf
1、去掉 #user nobody; 的#号, 变成 user nobody;
2、去掉
#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;
#}
之前的#号,
并修改

fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
为 [/cfastcgi_param SCRIPT_FILENAME /opt/nginx/html$fastcgi_script_name;
ode]
最终修改后的内容为:
[code]
location ~ \.php$ { root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /opt/nginx/html$fastcgi_script_name;
include fastcgi_params;
}
重启nginx服务,并开启php-fpm [root@pangou ~]# /opt/nginx/sbin/nginx
[root@pangou ~]# /opt/php/sbin/php-fpm
// 创建phpinfo文件
[root@pangou ~]# vim /opt/nginx/html/phpinfo.php
内容为

phpinfo();
?>
访问http://127.0.0.1/phpinfo.php
安装成功。mysql,mysqli等扩展都有。
这边有一点偷懒,并没有编译安装mysql,而是使用yum安装的mysql。

推荐阅读
  • 笔记说明重学前端是程劭非(winter)【前手机淘宝前端负责人】在极客时间开的一个专栏,每天10分钟,重构你的前端知识体系& ... [详细]
  • 随着Linux操作系统的广泛使用,确保用户账户及系统安全变得尤为重要。用户密码的复杂性直接关系到系统的整体安全性。本文将详细介绍如何在CentOS服务器上自定义密码规则,以增强系统的安全性。 ... [详细]
  • Asynchronous JavaScript and XML (AJAX) 的流行很大程度上得益于 Google 在其产品如 Google Suggest 和 Google Maps 中的应用。本文将深入探讨 AJAX 在 .NET 环境下的工作原理及其实现方法。 ... [详细]
  • 探讨了在HTML表单中使用元素代替进行表单提交的方法。 ... [详细]
  • 在Notepad++中配置Markdown语法高亮及实时预览功能
    本文详细介绍了如何在Notepad++中配置Markdown语法高亮和实时预览功能,包括必要的插件安装和设置步骤。 ... [详细]
  • 本文探讨了如何在PHP与MySQL环境中实现高效的分页查询,包括基本的分页实现、性能优化技巧以及高级的分页策略。 ... [详细]
  • H5技术实现经典游戏《贪吃蛇》
    本文将分享一个使用HTML5技术实现的经典小游戏——《贪吃蛇》。通过H5技术,我们将探讨如何构建这款游戏的两种主要玩法:积分闯关和无尽模式。 ... [详细]
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 本文探讨了如何通过优化 DOM 操作来提升 JavaScript 的性能,包括使用 `createElement` 函数、动画元素、理解重绘事件及处理鼠标滚动事件等关键主题。 ... [详细]
  • 本文详细介绍了五种常用的PHP排序算法——冒泡排序、选择排序、插入排序、希尔排序和堆排序。每种算法都附有代码示例,并通过打印和延时操作来直观展示排序过程。欢迎指出任何错误。 ... [详细]
  • Awk是一款功能强大的文本分析与处理工具,尤其在数据解析和报告生成方面表现突出。它通过读取由换行符分隔的记录,并按照指定的字段分隔符来划分和处理这些记录,从而实现复杂的数据操作。 ... [详细]
  • 深入解析Unity3D游戏开发中的音频播放技术
    在游戏开发中,音频播放是提升玩家沉浸感的关键因素之一。本文将探讨如何在Unity3D中高效地管理和播放不同类型的游戏音频,包括背景音乐和效果音效,并介绍实现这些功能的具体步骤。 ... [详细]
  • 本文提供了处理WordPress网站中出现过多重定向问题的方法,包括检查DNS配置、安装SSL证书以及解决数据库连接错误等步骤。 ... [详细]
  • 解决ADODB连接Access时出现80004005错误的方法
    本文详细介绍了如何解决在使用ADODB连接Access数据库时遇到的80004005错误,包括错误原因分析和具体的解决步骤。 ... [详细]
  • 本文探讨了一种常见的C++面试题目——实现自己的String类。通过此过程,不仅能够检验开发者对C++基础知识的掌握程度,还能加深对其高级特性的理解。文章详细介绍了如何实现基本的功能,如构造函数、析构函数、拷贝构造函数及赋值运算符重载等。 ... [详细]
author-avatar
平凡小迪
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有