Redis 是一个 key-value 存储系统,和 Memcached 类似, 是当前非常热门的 NoSQL 之一, 这段时间打算了解下。
下载
1 |
[redis@db1 ~]$ wget http://download.redis.io/releases/redis-2.8.17.tar.gz |
创建目录
1 |
[root@db1 local] |
安装
1 |
[redis@db1 ~]$ tar zxvf redis-2.8.17.tar.gz |
copy 文件
1 |
[redis-2.8.17]$ cd src 1 redis |
备注:这里将 make 生成后的可执行文件复制到目录/usr/local/redis/bin ,便于管理。
手册上关于可执行文件的解释
redis-server is the Redis Server itself.
redis-sentinel is the Redis Sentinel executable (monitoring and failover).
redis-cli is the command line interface utility to talk with Redis.
redis-benchmark is used to check Redis performances.
redis-check-aof and redis-check-dump are useful in the rare event of corrupted data files.
修改 redis.conf 参数
1 |
daemonize yes |
备注:目前仅设置以上参数,其余参数默认。
启动
1 |
[redis/usr/local/redis/redis.conf 1 redis]$ redis-server |
测试
1 |
[redis@db1 ~]$ redis-cli |
备注: 安装完成。
参考
原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/239591.html