CentOS 6.6 安装Memcached

一.环境介绍

2) memcached-1.4.24

二.部署安装

计划具体部署步骤:

步骤1:安装

步骤2:配置

步骤3:运行

步骤4:检查

现在开始:

1)安装

$ yum install -y wget gcc

$ wget http://cloud.github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz

$ tar zxvf libevent-2.0.21-stable.tar.gz

$ cd libevent-2.0.21-stable

$ ./configure --prefix=/usr/local/libevent

$ make && make install

$ wget http://www.memcached.org/files/memcached-1.4.24.tar.gz

$ tar zxvf memcached-1.4.24.tar.gz

$ cd memcached-1.4.24

$ ./configure --prefix=/usr/local/memcached --with-libevent=/usr/local/libevent

$ make && make install

$ ln -s /usr/local/memcached/bin/memcached /usr/local/bin/

2)配置

$ touch /etc/init.d/memcached

$ chmod 755 /etc/init.d/memcached

$ vi /etc/init.d/memcached

#!/bin/sh

#

# memcached:    MemCached Daemon

#

# chkconfig:    - 90 25

# description:  MemCached Daemon

#

# Source function library.

. /etc/rc.d/init.d/functions

. /etc/sysconfig/network

start()

{

        echo -n $"Starting memcached: "

        daemon /usr/local/bin/memcached -u daemon -d -m 2048 -l 0.0.0.0 -c 4096 -p 11211

        echo

}

stop()

{

        echo -n $"Shutting down memcached: "

        killproc memcached

        echo

}

[ -f /usr/local/bin/memcached ] || exit 0

# See how we were called.

case "$1" in

  start)

        start

        ;;

  stop)

        stop

        ;;

  restart|reload)

        stop

        start

        ;;

  condrestart)

        stop

        start

        ;;

  *)

        echo $"Usage: $0 {start|stop|restart|reload|condrestart}"

        exit 1

esac

exit 0

3)运行

$ /etc/init.d/memcached start

$ chkconfig memcached on

4)检查

#主要是检查进程以及端口

$ ps aux|grep memcached

$ netstat -ntlp|grep memcached

$ echo "stats settings" | nc 127.0.0.1 11211

Memcached 的详细介绍请点这里
Memcached 的下载地址请点这里

猜你喜欢

转载自www.linuxidc.com/Linux/2015-07/119568.htm