`

CentOS Nginx PHP MySQL Memcached 安装 配置 优化

阅读更多

http://www.phpplay.com/thread-118293-1-1.html

 

 

按照版本
Nginx 0.8.52 PHP 5.3.3
MySQL 5.5.6 Memcached

一、安装centos
这个比较容易,安装过程可以在如下几个帖子中找到。

http://www.phpplay.com/thread-118283-1-1.html

  http://www.phpplay.com/thread-118286-1-1.html

   http://www.phpplay.com/thread-118287-1-1.html

二、准备篇

2.1 修改CentOS的yum源

  1. vi /etc/yum.repos.d/CentOS-Base.repo
复制代码

为了加快速度,我们采用网易的源地址,文件内容参照以下修改:变颜色的为需要修改的地方

1. # CentOS-Base.repo
2. #
3. # This file uses a new mirrorlist system developed by Lance Davis for CentOS.
4. # The mirror system uses the connecting IP address of the client and the
5. # update status of each mirror to pick mirrors that are updated to and
6. # geographically close to the client. You should use this for CentOS updates
7. # unless you are manually picking other mirrors.
8. #
9. # If the mirrorlist= does not work for you, as a fall back you can try the
10. # remarked out baseurl= line instead.
11. #
12. #
13. [base]
14. name=CentOS-$releasever - Base
15. #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
16. #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
17. baseurl=http://mirrors.163.com/centos/$releasever/os/$basearch/
18. gpgcheck=1
19. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
20. #released updates
21. [updates]
22. name=CentOS-$releasever - Updates
23. #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
24. #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
25. baseurl=http://mirrors.163.com/centos/$releasever/updates/$basearch/
26. gpgcheck=1
27. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
28. #packages used/produced in the build but not released
29. [addons]
vi /etc/yum.repos.d/CentOS-Base.repo
30. name=CentOS-$releasever - Addons
31. #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=addons
32. #baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/
33. baseurl=http://mirrors.163.com/centos/$releasever/addons/$basearch/
34. gpgcheck=1
35. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
36. #additional packages that may be useful
37. [extras]
38. name=CentOS-$releasever - Extras
39. #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
40. #baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
41. baseurl=http://mirrors.163.com/centos/$releasever/extras/$basearch/
42. gpgcheck=1
43. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
44. #additional packages that extend functionality of existing packages
45. [centosplus]
46. name=CentOS-$releasever - Plus
47. #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
48. #baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
49. baseurl=http://mirrors.163.com/centos/$releasever/centosplus/$basearch/
50. gpgcheck=1
51. enabled=0
52. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

2.2更新yum

  1. yum -y update
复制代码

2.3使用yum更新所需要的程序库

  1. sudo -s
复制代码

安装libevent,memcached需要

  1. yum -y install libevent libevent-devel
复制代码

三、下载所需文件

说明:使用wget将下载的程序统一放到路径 /usr/src/ 下面。原文地址已经有些过期,这里更新为最新的。

  1. cd /usr/src/
  2. wget http://nginx.org/download/nginx-0.8.52.tar.gz
  3. wget http://cn.php.net/get/php-5.3.3.tar.gz/from/this/mirror
  4. #wget http://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.6-rc.tar.gz/from/http://mysql.he.net/
  5. wget http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.2-m2-linux-i686-glibc23.tar.gz
  6. wget http://memcached.googlecode.com/files/memcached-1.4.5.tar.gz
  7. wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz
  8. wget http://downloads.sourceforge.net/project/mcrypt/MCrypt/2.6.8/mcrypt-2.6.8.tar.gz?use_mirror=ncu
  9. wget http://downloads.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz?use_mirror=ncu
  10. wget http://downloads.sourceforge.net/project/mhash/mhash/0.9.9.9/mhash-0.9.9.9.tar.gz?use_mirror=ncu
  11. wget http://downloads.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.tar.gz?use_mirror=ncu
  12. #wget http://downloads.sourceforge.net/project/imagemagick/ImageMagick/00-6.6.5/ImageMagick-6.6.5-0.tar.gz?use_mirror=ncu
  13. wget http://sourceforge.net/projects/imagemagick/files/6.7.7-sources/ImageMagick-6.7.7-5.tar.gz/download
  14. wget http://pecl.php.net/get/APC-3.1.4.tgz
  15. wget http://pecl.php.net/get/memcache-2.2.6.tg
  16. wget http://pecl.php.net/get/imagick-3.0.1RC2.tgz
复制代码

三、安装篇

1. 安装libiconv

  1. cd /usr/src/</div><div>tar zxvf libiconv-1.13.1.tar.gz
  2. cd libiconv-1.13.1/
  3. ./configure --prefix=/usr/local
  4. make
  5. make install
  6. cd ../
复制代码

2. 修改动态链接载入的目录查找文件

  1. vi /etc/ld.so.conf
复制代码

在文件最后添加一行内容/usr/local/lib,然后运行以下命令

  1. /sbin/ldconfig
复制代码

3. 安装libmcrypt

  1. tar zxvf libmcrypt-2.5.8.tar.gz
  2. cd libmcrypt-2.5.8/
  3. ./configure
  4. make
  5. make install
  6. /sbin/ldconfig
  7. cd libltdl/
  8. ./configure --enable-ltdl-install
  9. make
  10. make install
  11. cd ../../
复制代码

4. 安装mhash

  1. tar zxvf mhash-0.9.9.9.tar.gz
  2. cd mhash-0.9.9.9/
  3. ./configure
  4. make
  5. make install
  6. cd ../
  7. ln -s /usr/local/bin/libmcrypt-config /usr/bin/libmcrypt-config
复制代码

5. 安装mcrypt

  1. tar zxvf mcrypt-2.6.8.tar.gz
  2. cd mcrypt-2.6.8/
  3. /sbin/ldconfig
  4. ./configure
  5. make
  6. make install
  7. cd ../
复制代码

6. 安装memcached

  1. tar xvf memcached-1.4.5.tar.gz
  2. cd memcached-1.4.5
  3. ./configure --prefix=/usr/local/memcached
  4. make
  5. make install
  6. cd ../
复制代码

7. 安装pcre

  1. tar zxvf pcre-8.10.tar.gz
  2. cd pcre-8.10/
  3. ./configure
  4. make
  5. make install
  6. cd ../
复制代码

8. 安装Nginx

  1. /usr/sbin/groupadd www
  2. /usr/sbin/useradd -g www www
  3. tar zxvf nginx-0.8.52.tar.gz
  4. cd nginx-0.8.52/
  5. ./configure --user=www --group=www \
  6. --prefix=/usr/local/nginx \
  7. --with-http_stub_status_module \
  8. --with-http_ssl_module
  9. make
  10. make install
  11. cd ../
复制代码

9. 安装PHP

  1. tar zxvf php-5.3.3.tar.gz
  2. cd php-5.3.3
  3. ./configure --prefix=/usr/local/php \
  4. --with-config-file-path=/usr/local/php/etc \
  5. --with-curl --with-curlwrappers \
  6. --with-freetype-dir \
  7. --with-jpeg-dir --with-png-dir \
  8. --with-gd --enable-gd-native-ttf \
  9. --with-iconv-dir=/usr/local/libiconv \
  10. --with-libxml-dir=/usr/local \
  11. --with-mhash --with-mcrypt \
  12. --with-mysql=mysqlnd --with-mysqli=mysqlnd \
  13. --with-openssl \
  14. --with-xmlrpc \
  15. --with-zlib \
  16. --disable-debug --disable-rpath \
  17. --enable-bcmath \
  18. --enable-fpm \
  19. --enable-inline-optimization \
  20. --enable-mbregex \
  21. --enable-mbstring \
  22. --enable-pcntl \
  23. --enable-safe-mode \
  24. --enable-shmop \
  25. --enable-soap \
  26. --enable-sockets \
  27. --enable-sysvsem \
  28. --enable-xml \
  29. --enable-zip \
  30. --with-libdir=lib64 \ ←64位操作系统需要添加此项,否则去除此项
  31. --without-pear
  32. make ZEND_EXTRA_LIBS='-liconv'
  33. make install
  34. cp ./php.ini-production /usr/local/php/etc/php.ini
  35. cd ../
复制代码

10. 安装ImageMagick

  1. tar zxvf ImageMagick-6.6.5-0.tar.gz
  2. cd ImageMagick-6.6.5-0/
  3. ./configure
  4. make
  5. make install
  6. cd ../
复制代码

11. 安装PHP扩展imagick

  1. tar zxvf imagick-3.0.1RC2.tgz
  2. cd imagick-3.0.1RC2/
  3. /usr/local/php/bin/phpize
  4. ./configure --with-php-config=/usr/local/php/bin/php-config
  5. make
  6. make install
  7. cd ../
复制代码

12. 安装PHP扩展memcache

  1. tar zxvf memcache-2.2.6.tgz
  2. cd memcache-2.2.6/
  3. /usr/local/php/bin/phpize
  4. ./configure --with-php-config=/usr/local/php/bin/php-config
  5. make
  6. make install
  7. cd ../
复制代码

13. 安装PHP扩展APC

  1. tar zxvf APC-3.1.4.tgz
  2. cd APC-3.1.4/
  3. /usr/local/php/bin/phpize
  4. ./configure --with-php-config=/usr/local/php/bin/php-config
  5. make
  6. make install
  7. cd ../
复制代码

14. 安装MySQL

  1. /usr/sbin/groupadd mysql
  2. /usr/sbin/useradd -g mysql mysql
  3. tar xvf mysql-5.5.6-rc.tar.gz
  4. cd mysql-5.5.6-rc/
  5. ./configure --prefix=/usr/local/mysql/ \
  6. --with-unix-socket-path=/tmp/mysql.sock \
  7. --with-big-tables \
  8. --with-charset=utf8 \
  9. --with-collation=utf8_general_ci \
  10. --with-extra-charsets=gbk,gb2312,utf8 \
  11. --with-client-ldflags=-all-static \
  12. --with-mysqld-ldflags=-all-static \
  13. --with-plugins=partition,innobase,myisammrg \
  14. --with-pthread \
  15. --with-readline \
  16. --without-debug \
  17. --without-isam \
  18. --enable-assembler \
  19. --enable-local-infile \
  20. --enable-thread-safe-client
  21. make
  22. make install
  23. chmod +w /usr/local/mysql
  24. chown -R mysql:mysql /usr/local/mysql
  25. cd ../
复制代码

全部安装的过程已经结束,下一篇结束配置。

分享到:
评论

相关推荐

    CentOS6.5+mysql+nginx+php+memcached安装指南

    Windows8上安装虚拟机VirtualBox,然后新建虚拟电脑,搭建CentOS6.5 + mysql + nginx + php + memcached平台环境,部署网站。文档中记录了部分FAQ。

    CentOS下Nginx0.8.52-PHP5.3.3-MySQL5.5.6-Memcached1.4.5安装配置优化

    通过上述步骤,我们可以完成在CentOS环境下 LNMPM 架构的安装配置以及优化。这些操作对于Web应用的性能提升至关重要,能够有效降低延迟、提高吞吐量,并保证系统的稳定运行。在实际部署过程中,还需要根据具体的应用...

    nginx+apache+mysql+php+memcached+squid搭建门户网站

    ### Nginx+Apache+MySQL+PHP+Memcached+Squid 搭建门户网站 #### 一、前言与架构概述 随着互联网技术的发展,如何构建一个高效、稳定且能够应对高并发访问的Web服务器成为了许多企业和开发者关注的重点。本文将...

    CentOS Nginx PHP JAVA多语言镜像使用手册

    ### CentOS Nginx PHP JAVA多语言镜像使用手册 #### 镜像说明 ##### 版本说明 根据文档中的信息,此镜像是一个专为阿里云设计的多语言环境镜像,支持多种版本的软件,包括但不限于: - **Nginx** 1.10.3:这是一...

    nginx+apache+mysql+php+memcached+squid搭建集群web环境

    例如,这里使用的是双核Intel Xeon 3.00GHz服务器,2GB内存,CentOS 4.4操作系统,以及一系列预安装的软件版本,如Apache 2.2.3、PHP 5.2.0、eAccelerator 0.9.5、memcache 1.2.0、MySQL 5.0.27、Nginx 0.5.4和Squid...

    Nginx1.12+PHP7.1+Mysql5.6.doc

    在CentOS 7.2系统上安装Nginx 1.12、PHP 7.1和MySQL 5.6的步骤如下: 首先,为了获取额外的软件包,你需要添加EPEL(Extra Packages for Enterprise Linux)仓库源。运行以下命令: ```bash yum -y install epel-...

    搭建nginx+apache+mysql+php+memcached+squid服务器集群.zip_nginx正向代理

    在本场景中,我们讨论的是基于Nginx、Apache、MySQL、PHP、Memcached和Squid构建的服务器集群。下面将详细解释这些组件及其在集群中的作用。 1. **Nginx**:Nginx是一个高性能的HTTP和反向代理服务器,以其轻量级和...

    nginx+apache+mysql+php+memcached+squid搭建集群web环境(二)

    【吐血推荐】nginx+apache+mysql+php+memcached+squid搭建集群web环境(二) 此乃本人N次服务器真机实验所得,所以分数高点,望体谅.. 按教程来做,你也可以搭建linux服务器... 注:此乃分卷二,

    Linux+Apache+Nginx+MySQL+PHP_前后端_部署_生产环境

    ### Linux+Apache+Nginx+MySQL+PHP (LANMP/LNAMP) 生产环境部署详解 #### 一、概述 本文旨在详细介绍如何构建一个高效、稳定的Linux+Apache+Nginx+MySQL+PHP(LANMP/LNAMP)生产环境。通过合理配置这些组件,可以...

    LNMP之nginx1.4.6+php5.5.11+mysql5.6.17+mecache+opcache编译安装

    本文将详细介绍如何从源码编译安装LNMP环境,具体包括Nginx 1.4.6、PHP 5.5.11、MySQL 5.6.17以及额外的Memcache和Opcache。 #### 三、编译前准备 1. **选择合适的Linux发行版**:推荐使用CentOS 6.4 x86_64位,...

    centos6.5安装LNMP服务器教程

    本文将详细介绍如何在CentOS 6.5上安装LNMP(Linux+Nginx+MySQL+PHP)服务器环境。LNMP架构是一种非常流行的Web服务器组合,它不仅性能高效而且配置灵活,非常适合部署各种基于PHP的应用程序。 #### 二、准备阶段 ...

    Linux+nginx+php+mysql+memcache

    2. **PHP优化**: - 启用OPcache加速。 - 减少不必要的数据库查询次数。 - 使用对象缓存机制减轻内存负担。 3. **MySQL优化**: - 选择合适的存储引擎(InnoDB、MyISAM)。 - 调整innodb_buffer_pool_size参数...

    Centos7系统安装nextcloud13.0.6,详细教程

    本文详细介绍了在CentOS 7环境下安装Nextcloud所需的基础环境配置流程,包括Nginx、PHP及其扩展以及MySQL数据库的安装步骤。通过这些步骤,你可以为Nextcloud的安装打下坚实的基础。接下来,我们将继续探讨Nextcloud...

    centos7利用yum安装lnmp的教程(linux+nginx+php7.1+mysql5.7)

    本教程将详细介绍如何在CentOS 7上使用YUM包管理器来安装LNMP环境,特别是针对Nginx 1.12+、PHP 7.1和MySQL 5.7的版本。 首先,确保系统是最新的,通过执行以下命令更新系统包: ```bash yum update ``` 接下来,...

    LANMP安装配置

    **LANMP安装配置详解** 在IT行业中,LANMP(Linux + Apache + Nginx + MySQL/MariaDB + PHP)是一种常见的Web服务器架构,用于搭建高效、稳定且可扩展的网站平台。本文将深入探讨如何在CentOS操作系统上进行完整的...

    详细讲诉在32位centos 5.x6.0下配置kmp的方法.pdf

    在32位CentOS 5.x/6.0操作系统中配置KMP(Kangle MySQL PHP)涉及多个步骤,包括MySQL数据库、PHP解释器以及Kangle Web服务器的源码编译安装。以下是对整个过程的详细讲解: 1. **MySQL 5.1.x 和 5.5.x 编译方法**...

    centos6.2+lnmp一键安装包+discuz论坛安装教程

    安装过程中还会自动安装编译Nginx、MySQL、PHP、phpMyAdmin和Zend Optimizer等软件。 安装完成后,你还可以通过额外的脚本安装其他组件,如PureFTPd、eAccelerator、ionCube、imageMagick和memcached,以增强Web...

    Nginx镜像使用手册

    手册最后列出了所有软件的版本信息,包括Nginx 1.9.14、MySQL 5.6.29、Redis 3.0.7、Memcached 1.4.25、Jemalloc 4.1.0、Pure-FTPd 1.0.42、phpMyAdmin *.*.**.*。这些信息对于了解系统配置和后续的故障排查非常有用...

    docker-lnmp:基于docker-compose构建的lnmp环境,包含php7,nginx,mysql,redis,memcached,mongodb,atlas,cron

    LNMP(Docker + Docker-compose + Nginx + MySQL5.7 + PHP7.2 + Redis5.0 + Memcached1.5 + Mongodb4.2) LNMP项目特点: 一键安装,简单实用 包含lnmp常用服务 各服务支持数据文件,配置文件,日志文件挂载 默认...

Global site tag (gtag.js) - Google Analytics