码迷,mamicode.com
首页 > 系统相关 > 详细

centos下memcached安装

时间:2017-01-22 14:45:56      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:缓存系统   local   out   源文件   用户   tar   memcach   configure   without   

  memcached是一款高速、分布式的内存缓存系统。其官方主页在http://www.danga.com/memcached/
  1。安装前的准备
  要安装memcached,需要有libevent的支持。
  centos通过
  yum install libevent-devel
  安装即可
  其它版本可通过安装libevent的源文件获得
  2。下载安装 目前最新版本为 memcached-1.2.6.tar.gz
  cd /usr/src
  wget http://www.danga.com/memcached/dist/memcached-1.2.6.tar.gz
  tar xzf memcached-1.2.6.tar.gz
  cd memcached-1.2.6
  ./configure --prefix=/usr/local/memcached
  make
  make install
  3。启动
  /usr/local/memcached/bin/memcached -d -m 512 -l 127.0.0.1 -p 11211 -u root
  表示已守护进程的方式启动,监听于 127.0.0.1 的11211端口,使用root用户,最大使用512M内存
  可以同时开多个memcached,但要监听在不同的端口.
  说明:如果没有带 -u root 的话就会报:
  can‘t run as root without the -u switch
  解决:带-u root就行!

centos下memcached安装

标签:缓存系统   local   out   源文件   用户   tar   memcach   configure   without   

原文地址:http://www.cnblogs.com/wangchunniu1314/p/6340056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!