Redis 4.0.2單機安裝部署

weixin_34248705發表於2017-11-21

01安裝GCC環境

yum -y install gcc gcc-c++ libstdc++-devel tcl -y

02下載安裝包

cd /downloads/
wget http://219.238.7.71/files/403400000ABE0C0C/download.redis.io/releases/redis-4.0.2.tar.gz
tar -zxvf redis-4.0.2.tar.gz  -C /usr/local/src/
cd /usr/local/src/
mv redis-4.0.2 redis

03編譯Redis

cd /export/servers/redis/
make MALLOC=libc
make PREFIX=/usr/local/redis install

04準備配置檔案

cd /usr/local/redis/bin/
cd /usr/local/redis
mkdir conf
cd conf
vi redis_6379.conf
配置檔案如下(配置問本地連線):

bind 127.0.0.1
protected-mode yes
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /export/data/redis/6379/redis_6379.pid
loglevel notice
logfile "/export/data/redis/6379/log.log"
databases 16
always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir /export/data/redis/6379/
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no
appendonly yes
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble no
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
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

特變注意的幾個欄位

bind 172.0.0.1 (注意這裡是IP遠端連線需要配置當前伺服器IP地址)
port 6380   (埠號)
pidfile /export/data/redis/6380/redis_6380.pid(生成的pid)
logfile "/export/data/redis/6380/log.log" (生成日誌儲存路徑,注意這裡前面的地址資料夾沒有一定要建立)
dir /export/data/redis/6380/ (資料儲存地址)
cluster-config-file /usr/local/redis/conf/nodes_6380.conf (配置檔案地址)

05啟動服務

mkdir -p /export/data/redis/6379/(一定要建立日誌存放的路徑)
cd /usr/local/redis/bin/
./redis-server ../conf/redis_6379.conf

06使用客戶端連線

cd /usr/local/redis/bin/
./redis-cli 

(注意配置遠端連線為)
./redis-cli -h 192.168.191.100 -c -p 6379
127.0.0.1:6379> ping
PONG

配置叢集

相關文章