一、yum安裝
1.安裝
# sudo yum install -y
# sudo yum --enablerepo=remi install redis -y
2.設定集群
# (1)修改配置檔案,將以下兩行的注釋去掉
cluster-enabled yes
cluster-config-file nodes-6379.conf
# (2)啟動redis
# sudo systemctl restart redis
# redis-cli -h 127.0.0.1 -p 6379 cluster addslots
3.redis 壓測
# redis-benchmark -h *** -p 6379 -c 1 -n 10000 -t get -q
二、編譯安裝
# yum install -y gcc make
# cd /cust/utils
# wget
# tar zxvf redis-5.0.8.tar.gz
# cd /cust/utils/redis-5.0.8
# make
# make prefix=/usr/local/redis install
#### 注意 在make 時可能會出錯 zmalloc.h:50:31: 致命錯誤:jemalloc/jemalloc.h########
# 解決方法
# cd deps
# make jemalloc hiredis linenoise lua
2.修改配置
# mkdir /usr/local/redis/conf/
# cp /cust/utils/redis-5.0.8/redis.conf /usr/local/redis/conf/
# vim /usr/local/redis/conf/redis.conf # 修改下面配置
dir /cust/data/redis
logfile "/cust/logs/redis/redis.log"
# mkdir -p /cust/data/redis /cust/logs/redis/
3.啟動
# /usr/local/redis/bin/redis-server /usr/local/redis/conf/redis.conf &
Debian安裝最新版Redis
redis基於c開發,因此確保電腦安裝有gcc和make。完成之後,編譯步驟如下 tar xvf redis x x.x tar gzcd redis x x.x make test 可選項,測試主機效能,可以直接忽略 makesudo make install cd utils sudo inst...
Debian安裝最新版Redis
簡介redis基於c開發,因此確保電腦安裝有gcc和make。完成之後,編譯步驟如下 tar xvf redis x.x.x.tar.gz cd redis x.x.x make test 可選項,測試主機效能,可以直接忽略 make12 34安裝sudo make install cd utils...
Linux安裝redis最新版5 0 8
如果是在校大學生,可以到阿里雲 去免費領取乙個半年的阿里雲伺服器,不知道現在還可以免費領取不。也可以安裝虛擬機器,在虛擬機上安裝redis。在windows上安裝redis是很簡單的,這裡不做講解。redis官網,最新版本是5.0.8。準備工作 xshell遠端連線工具,xftp檔案上傳工具。開始安...