Redis: 安装简介

Redis 是一个 key-value 存储系统,和 Memcached 类似, 是当前非常热门的 NoSQL 之一, 这段时间打算了解下。

下载

1
[redis@db1 ~]$ wget http://download.redis.io/releases/redis-2.8.17.tar.gz

创建目录

1
2
[root@db1 local]# mkdir -p /usr/local/redis/bin  
[root@db1 redis]# chown -R redis:redis /usr/local/redis

安装

1
2
3
[redis@db1 ~]$ tar zxvf redis-2.8.17.tar.gz   
[redis@db1 ~]$ cd redis-2.8.17
[redis@db1 redis-2.8.17]$ make

copy 文件

1
2
3
[redis@db1 redis-2.8.17]$ cd src  
[redis@db1 src]$ cp redis-benchmark redis-cli redis-check-aof redis-check-dump redis-sentinel redis-server /usr/local/redis/bin
[redis@db1 redis-2.8.17]$ cp redis.conf /usr/local/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
2
3
4
5
daemonize yes  
pidfile /usr/local/redis/redis.pid
logfile "/usr/local/redis/redis.log"
dbfilename dump.rdb
dir /usr/local/redis

备注:目前仅设置以上参数,其余参数默认。

启动

1
[redis@db1 redis]$ redis-server /usr/local/redis/redis.conf

测试

1
2
3
4
5
[redis@db1 ~]$ redis-cli   
127.0.0.1:6379> set a 1
OK
127.0.0.1:6379> get a
"1"

备注: 安装完成。

参考

原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/239591.html

(0)
上一篇 2022年2月12日
下一篇 2022年2月12日

相关推荐

发表回复

登录后才能评论