博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
redis的shell安装脚本,实现在linux下本机主从架构
阅读量:6405 次
发布时间:2019-06-23

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
# create by lihuibin
# date 2014-04-15
# desc install redis
basedir=`
pwd
`
homepath=
/usr/local/redis
[ -d $homepath ] && {
echo 
"redis already installed "
exit
} || {
        
echo 
"begin init redis dir"
        
for 
in 
bin etc data log ;
do
                
mkdir 
-pv $homepath/$i
        
done
}
[ -f redis-2.8.8.
tar
.gz ] || {
echo 
"begin to download redis package"
wget http:
//download
.redis.io
/releases/redis-2
.8.8.
tar
.gz
echo 
" download redis package completed"
}
echo 
"begin to make source code"
tar 
xzf redis-2.8.8.
tar
.gz
cd 
redis-2.8.8
make
echo 
"make source code completed"
cd 
src
cp 
-r redis-benchmark redis-check-aof redis-check-dump redis-sentinel redis-cli redis-server $homepath
/bin
[ -f $basedir
/redis
.conf ] && {
        
echo 
"start redis-server"
        
for 
conf 
in 
redis.conf redis_salve.conf ;
do
        
cp 
$basedir/$conf $homepath
/etc/
        
$homepath
/bin/redis-server 
$homepath
/etc/
$conf
        
done
} || {
 
echo 
"not found $basedir/redis.conf"
}

主:6379

从:6380

wKioL1NYb6yheqOnAABtT6b2o3w954.jpg

主:redis.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
daemonize 
yes
pidfile 
/var/run/redis
.pid
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 0
loglevel notice
logfile 
"/usr/local/redis/log/redis.log"
databases 16
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error 
yes
rdbcompression 
yes
rdbchecksum 
yes
dbfilename dump.rdb
dir 
/usr/local/redis/data
slave-serve-stale-data 
yes
slave-
read
-only no
repl-disable-tcp-nodelay no
slave-priority 100
appendonly no
appendfilename 
"appendonly.aof"
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
notify-keyspace-events 
""
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

从:redis_salve.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
daemonize 
yes
pidfile 
/var/run/redis_salve
.pid
port 6380
tcp-backlog 511
timeout 0
tcp-keepalive 0
loglevel notice
logfile 
"/usr/local/redis/log/redis_slave.log"
databases 16
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error 
yes
rdbcompression 
yes
rdbchecksum 
yes
dbfilename dump_salve.rdb
dir 
/usr/local/redis/data
slave-serve-stale-data 
yes
slave-
read
-only no
repl-disable-tcp-nodelay no
slave-priority 100
appendonly no
appendfilename 
"appendonly.aof"
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
notify-keyspace-events 
""
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
SLAVEOF 127.0.0.1 6379
本文转自birdinroom 51CTO博客,原文链接:http://blog.51cto.com/birdinroom/1401493,如需转载请自行联系原作者
你可能感兴趣的文章
Android Java Framework显示Toast(无Activity和Service)
查看>>
通过 SignalR 类库,实现 ASP.NET MVC 的实时通信
查看>>
NavigationController修改状态条颜色
查看>>
16大跨平台游戏引擎
查看>>
NPS如何配置基于mac地址的8021x认证
查看>>
XenServer架构之XAPI的调用流程
查看>>
redhat下搭建LAMP架构
查看>>
GitHub详细教程
查看>>
ffmpeg使用tee实现单次编码多路输出
查看>>
关于Windows Network Load Balance
查看>>
raid技术的读与想
查看>>
Hbase 中Column Family 的作用
查看>>
用鸡讲解技术债务的形成过程?
查看>>
Linux下的Tftp服务
查看>>
C#将集合和Json格式互相转换的几种方式
查看>>
java连接数据库并操作
查看>>
安装.net framework 4.0时提示HRESULT 0xc8000222
查看>>
信息熵
查看>>
集群下文件同步问题
查看>>
ASA 5510 V821 EASY ×××配置
查看>>