redis的安装


【安装步骤】
1. 下载编译:
wget http://redis.googlecode.com/files/redis-2.6.2.tar.gz
tar xvzf redis-2.6.2.tar.gz
cd redis-2.6.2
make
 
2. 复制文件:
mkdir /home/redis1
cp src/redis-server src/redis-benchmark src/redis-cli src/redis-check-aof /home/redis2
cp redis.conf /home/redis2
 
3.  修改redis.conf   :
daemonize  yes
 
4. 启动服务:
./redis-server  redis.conf

 


--------------------------------------------------------------


台双核虚拟机,内存4G,硬盘40G
每台虚拟机安装两个Redis实例:
 Linux系统 :CentOS
 C/C++编译器:gcc(gcc –v,如果能返回版本号则安装成功)
 JDK:jdk-6u20-linux-i586.bin
 Redis:
  版本:redis-2.4.13.tar.gz
  可执行文件包括:redis-benchmark  redis-cli  redis-server
  配置文件:redis.conf
  编译后的目录:请将redis编译后的可执行文件及配置文件放到/home/redis_1和/home/redis_2
  Redis配置文件redis.conf按照如下配置:
  Redis_1:
   1、 daemonize yes
   2、 SNAPSHOTTING 配置全部打开
  Redis_2:
   1、 daemonize yes
   2、 port 6380
   3、 SNAPSHOTTING 配置全部注释
   4、 appendonly yes
   5、 打开 appendfilename appendonly.aof
   6、 no-appendfsync-on-rewrite yes
  防火墙限制:请确保iptables的设置没有限制
  Redis下载地址:http://redis.googlecode.com/files/redis-2.4.13.tar.gz

  7  slaveof指向对方主ip  端口
 
 

你可能感兴趣的:(redies)