CentOS7下安装memcached服务

Posted mr-hou-8848

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7下安装memcached服务相关的知识,希望对你有一定的参考价值。

首先下载memcached

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

安装前需要先安装libevent

yum -y install libevent libevent-devel
#解压
tar zxvf memcached-1.5.9.tar.gz
#进入目录
cd memcached-1.5.9
#配置
./configure --prefix=/usr/local/memcached --prefix=/usr/local/memcached/
#编译
make
#安装
make install
#启动memcached
/usr/local/memcached/bin/memcached -m 10 -u root &

注:-m 内存(单位为M) -u 用户 另外还可以有其他参数-l 主机IP -p 端口

如需设置开机自启动可以按如下方式编辑文件,然后加入启动命令

vi /etc/rc.d/rc.local

注:可能需要赋予rc.local文件可执行权限才可以开机执行

以上是关于CentOS7下安装memcached服务的主要内容,如果未能解决你的问题,请参考以下文章

centos7下memcached的安装配置

memcache缓存服务器(安装-配置-测试篇)

Centos7下关于memcached的安装和简单使用

centos7.4搭建Memcached

centos7下安装php+memcached简单记录

centos7上安装memcached以及PHP安装memcached扩展