Memcached的代理服务器:magent应用配置

magent是一款开源的Memcached代理服务器软件。
下载地址:http://code.google.com/p/memagent/downloads/list

新建/usr/local/magent目录作为下载路径,
安装:
1、tar -zvxf magent-0.6.tar.gz
2、cd magent
3、vim Makefile,.
修改LIBS = /usr/lib64/libevent.a /usr/lib64/libm.a为LIBS = -lrt /usr/lib64/libevent.a /usr/lib64/libm.a,否则要报一下错误:
/opt/libevent-2.0.12-stable/event.c:326: undefined reference to `clock_gettime'
collect2: ld returned 1 exit status
4、make install

启动:
./magent -u root -l 10.10.1.208 -p 12000 -s 10.10.1.205:11211 -s 10.10.1.208:11211 -b 10.10.1.212:11211
-s后为主缓存服务器,-b后是备份缓存服务器,-l和-p为magent监听的ip和端口,所有缓存根据键值和和服务器数量取模后,缓存到对应主服务器,同时都在备份服务器上缓存一份

你可能感兴趣的:(memcached)