Redis是一个开源(BSD 许可),内存存储的数据结构服务器,可用作数据库,高速缓存和消息队列代理。它支持字符串、哈希表、列表、集合、有序集合,位图,hyperloglogs等数据类型。——摘自Redis中文网。
安装步骤
下载源码
wget http://download.redis.io/releases/redis-3.2.11.tar.gz
解压
tar zxvf redis-3.2.11.tar.gz
安装编译工具gcc
yum -y install gcc
yum -y install gcc-c++
编译
cd redis-3.2.11
make
make install
#或者:
make PREFIX=/opt/redis-3.2.11 install
移动编译后的文件
mkdir -p /opt/redis-3.2.11
#将src目录下的
redis-benchmark
redis-check-aof
redis-check-rdb
redis-cli
redis-sentinel
redis-server
#移入到该文件夹中。
[root@centos64 redis-3.2.11]# ls -lh
-rwxr-xr-x. 1 root root 5.4M Dec 7 19:42 redis-benchmark
-rwxr-xr-x. 1 root root 22K Dec 7 19:42 redis-check-aof
-rwxr-xr-x. 1 root root 7.5M Dec 7 19:42 redis-check-rdb
-rwxr-xr-x. 1 root root 5.5M Dec 7 19:42 redis-cli
-rwxr-xr-x. 1 root root 7.5M Dec 7 19:42 redis-sentinel
-rwxr-xr-x. 1 root root 7.5M Dec 7 19:42 redis-server
建立Redis数据存放路径、日志输出路径以及日志文件
mkdir -p /data/redis/data
mkdir -p /data/redis/log
touch /data/redis/log/redis.log
配置Redis
vim /etc/redis.conf
#仅作缓存使用
bind 127.0.0.1 192.168.10.134
#开启保护模式
protected-mode yes
daemonize yes
pidfile /opt/redis-3.2.11/redis.pid
port 6379
timeout 300
loglevel notice
logfile /data/redis/log/redis.log
databases 16
save 900 1
save 300 10
save 60 10000
rdbcompression yes
dbfilename dump.rdb
dir /data/redis/data/
appendonly no
appendfsync always
slave-serve-stale-data yes
slave-read-only yes
#redis密码
requirepass xxxx
#redis 最大内存1G
maxmemory 805306368
#redis缓存策略永不过期
maxmemory-policy noeviction
启动redis
./redis-server /etc/redis.conf
关闭redis
./redis-cli -a xxxx
shutdown