博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2 安装redis.md
阅读量:6368 次
发布时间:2019-06-23

本文共 2584 字,大约阅读时间需要 8 分钟。

 

 

一、Linux系统安装Redis

下载Redis包,这里下载的是3.2.3版本

1、编译安装Redis

[root@localhost ~]# mkdir \/app

[root@localhost ~]# cd \/app

[root@localhost ~]# wget http:\/\/download.redis.io\/releases\/redis-3.2.3.tar.gz

解压压缩包

[root@localhost ~]# tar xf redis-3.2.3.tar.gz

[root@localhost ~]# cd redis-3.2.3

编译Redis

[root@localhost redis-3.2.3]# make

安装Redis

[root@localhost redis-3.2.3]# make install

cd src && make install

make[1]: Entering directory `\/app\/redis-3.2.3\/src'

Hint: It's a good idea to run 'make test' ;)

INSTALL install

INSTALL install

INSTALL install

INSTALL install

INSTALL install

make[1]: Leaving directory `\/app\/redis-3.2.3\/src'

2、提供配置文件和基础数据目录(我这里将Redis执行文件复制到专门的目录)

[root@localhost redis-3.2.3]# mkdir -pv \/app\/redis\/{bin,conf,log,db}

mkdir: created directory ‘\/app\/redis’

mkdir: created directory ‘\/app\/redis\/bin’

mkdir: created directory ‘\/app\/redis\/conf’

mkdir: created directory ‘\/app\/redis\/log’

mkdir: created directory ‘\/app\/redis\/db’

[root@localhost redis-3.2.3]# cd src

复制需要的二进制文件

[root@localhost src]# cp redis-benchmark redis-check-aof redis-check-rdb redis-cli redis-sentinel redis-server \/app\/redis\/bin\/

[root@localhost src]# cd \/app\/redis

提供启动配置文件

[root@localhost redis]# vim conf\/redis.conf

daemonize yes

protected-mode no

pidfile \/var\/run\/redis.pid

port 6379

timeout 0

tcp-keepalive 0

databases 16

save 900 1

save 300 10

save 60 10000

stop-writes-on-bgsave-error yes

rdbcompression yes

rdbchecksum yes

dir \/app\/redis\/db

dbfilename dump-6379.rdb

loglevel notice

logfile \/app\/redis\/log\/redis.log

slave-serve-stale-data yes

slave-read-only yes

repl-disable-tcp-nodelay no

slave-priority 100

appendonly no

appendfsync everysec

no-appendfsync-on-rewrite no

auto-aof-rewrite-percentage 100

auto-aof-rewrite-min-size 64mb

lua-time-limit 5000

slowlog-log-slower-than 10000

slowlog-max-len 128

hash-max-ziplist-entries 512

hash-max-ziplist-value 64

list-max-ziplist-entries 512

list-max-ziplist-value 64

set-max-intset-entries 512

zset-max-ziplist-entries 128

zset-max-ziplist-value 64

activerehashing yes

client-output-buffer-limit normal 0 0 0

client-output-buffer-limit slave 256mb 64mb 60

client-output-buffer-limit pubsub 32mb 8mb 60

hz 10

aof-rewrite-incremental-fsync yes

3.启动Redis服务

[root@localhost redis]# \/app\/redis\/bin\/redis-server \/app\/redis\/conf\/redis.conf

查看是否启动Redis服务,并监听指定端口

这里可以看到,默认的6379已经处于监听状态

4.测试Redis

5.查看Redis日志

[root@localhost redis]# tailf \/app\/redis\/log\/redis.log

二、Windows安装Redis

下载地址,这里redis-64.3.0.503版本

1.下载并解压,解压后如下

2.使用cmd进入到Redis解压目录中,并使用脚本(redis-server.exe redis.windows.conf)执行即可,默认配置文件不需要修改

转载地址:http://otema.baihongyu.com/

你可能感兴趣的文章
1、集合 2、Iterator迭代器 3、增强for循环 4、泛型
查看>>
关于/var/run/docker.sock
查看>>
SCrapy爬虫大战京东商城
查看>>
用 JavaScript 实现链表操作 - 11 Alternating Split
查看>>
Laravel优秀扩展包整理
查看>>
日志分析之识别真假蜘蛛与处理办法
查看>>
太多脚本将会毁掉持续交付
查看>>
一地鸡毛 OR 绝地反击,2019年区块链发展指南
查看>>
卢森堡大学发布RepuCoin系统,可破解区块链51%攻击
查看>>
国内云计算厂商众生相:四大阵营十几家企业生存盘点
查看>>
细说Unicode(一) Unicode初认识
查看>>
Node.js有了新的管理者
查看>>
Java 20年:历史与未来
查看>>
彻底理解Javascript中的原型链与继承
查看>>
腾讯最大规模裁撤中层干部,让贤年轻人
查看>>
gRPC-Web发布,REST又要被干掉了?
查看>>
如何:强化 TCP/IP 堆栈安全
查看>>
Spring3 MVC中使用Swagger生成API文档
查看>>
FastCGI PHP on Windows Server 2003
查看>>
LimeSDR Getting Started Quickly | LimeSDR上手指南
查看>>