LNMP平台+Memcached缓存系统

LNMP是和LAMP一样的web服务平台,只不过是用nginx代替Apache来提供http服务。
 
Memcached是一款开源、高性能、分布式内存对象缓存系统,可应用各种需要缓存的场景,其主要目的是通过降低对Database的访问来加速web应用程序。Memcached是一款开发工具,它既不是一个代码加速器,也不是数据库中间件。它是一个基于内存的“键值对”存储,用于存储数据库调用、API调用或页面引用结果的直接数据,如字符串、对象等。
 
准备软件:
 
nginx-1.2.3.tar.gz
 
MySQL-5.5.28-linux2.6-i686.tar.gz
libmcrypt-2.5.8-4.el5.CentOS.i386.rpm
libmcrypt-devel-2.5.8-4.el5.centos.i386.rpm
mhash-0.9.9-1.el5.centos.i386.rpm
mhash-devel-0.9.9-1.el5.centos.i386.rpm
mcrypt-2.6.8-1.el5.i386.rpm
 
php-5.4.8.tar.bz2
xcache-2.0.0.tar.gz
 
memcached-1.4.15.tar.gz
libevent-2.0.20-stable.tar.gz
memcache-2.2.6.tgz
libmemcached-1.0.2.tar.gz
memadmin-master.zip
 


 
一、搭建LNMP平台
 
(一)安装nginx
 
1、解决依赖关系
 
编译安装nginx需要事先需要安装开发包组"Development Tools"和 "Development Libraries"。同时,还需要专门安装pcre-devel包:
# yum -y install pcre-devel
 
2、编译安装nginx
 
首先添加运行nginx服务的用户:
 
# groupadd -r nginx
# useradd -r -g nginx -M nginx
 
然后解压nginx并切换到nginx-1.2.3目录开始编译安装:
 
# ./configure \
  --prefix=/usr \ #安装目录
  --sbin-path=/usr/sbin/nginx \ #sbin程序安装路径
  --conf-path=/etc/nginx/nginx.conf \ #主配置文件路径
  --error-log-path=/var/log/nginx/error.log \ #错误日志路径
  --http-log-path=/var/log/nginx/access.log \ #访问日志路径
  --pid-path=/var/run/nginx/nginx.pid  \ #pid进程文件路径
  --lock-path=/var/lock/nginx.lock \ #文件锁路径
  --user=nginx \ #运行nginx的用户
  --group=nginx \ #运行nginx的组
  --with-http_ssl_module \ #启用ssl功能模块
  --with-http_flv_module \ #其他flv流媒体支持模块
  --with-http_stub_status_module \ #启用运行状态监控模块
  --with-http_gzip_static_module \ #启用gzip压缩支持
  --http-client-body-temp-path=/var/tmp/nginx/client/ \ #指定客户端请求的缓存路径
  --http-proxy-temp-path=/var/tmp/nginx/proxy/ \ #指定代理的临时工作路径
  --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \ #fastcgi临时文件暂存路径
  --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ #uwsgi临时文件路径
  --http-scgi-temp-path=/var/tmp/nginx/scgi \ #scgi临时文件路径
  --with-pcre # 启用pcre支持
# make && make install
 
3、为nginx提供SysV init脚本并启动服务:
 
新建文件/etc/rc.d/init.d/nginx,脚本内容如下:
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig:  - 85 15
# description:  Nginx is an HTTP(S) server, HTTP(S) reverse \
#              proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /etc/nginx/nginx.conf
# config:      /etc/sysconfig/nginx
# pidfile:    /var/run/nginx.pid
 
# Source function library.
. /etc/rc.d/init.d/functions
 
# Source networking configuration.
. /etc/sysconfig/network
 
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
 
nginx="/usr/sbin/nginx"
prog=$(basename $nginx)
 
NGINX_CONF_FILE="/etc/nginx/nginx.conf"
 
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
 
lockfile=/var/lock/subsys/nginx
 
make_dirs() {
  # make required directories
  user=`nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
  options=`$nginx -V 2>&1 | grep 'configure arguments:'`
  for opt in $options; do
      if [ `echo $opt | grep '.*-temp-path'` ]; then
          value=`echo $opt | cut -d "=" -f 2`
          if [ ! -d "$value" ]; then
              # echo "creating" $value
              mkdir -p $value && chown -R $user $value
          fi
      fi
  done
}
 
start() {
    [ -x $nginx ] || exit 5
    [ -f $NGINX_CONF_FILE ] || exit 6
    make_dirs
    echo -n $"Starting $prog: "
    daemon $nginx -c $NGINX_CONF_FILE
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}
 
stop() {
    echo -n $"Stopping $prog: "
    killproc $prog -QUIT
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}
 
restart() {
    configtest || return $?
    stop
    sleep 1
    start
}
 
reload() {
    configtest || return $?
    echo -n $"Reloading $prog: "
    killproc $nginx -HUP
    RETVAL=$?
    echo
}
 
force_reload() {
    restart
}
 
configtest() {
  $nginx -t -c $NGINX_CONF_FILE
}
 
rh_status() {
    status $prog
}
 
rh_status_q() {
    rh_status >/dev/null 2>&1
}
 
case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart|configtest)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
            ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
        exit 2
esac
 
为此脚本赋予执行权限:
# chmod +x /etc/rc.d/init.d/nginx
 
添加至服务管理列表,并让其开机自动启动:
# chkconfig --add nginx
# chkconfig nginx on
 
查看80端口是否被占用:
 
#netstat -tnlp | grep :80
 
启动nginx服务:
 
# service nginx start
 
查看服务进程:
 
#ps aux | grep nginx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/4cf8cf5b5639d95f4520447e8d0786a3.html