Centos 環境 Redis 安裝

2021-10-03 19:16:26 字數 786 閱讀 4619

2.解壓

3.安裝編譯工具

4.執行編譯

5.配置redis.conf

mkdir /usr/local/redis_docker 

cd /usr/local/redis_docker

wget

tar -xzf redis-5.0.5.tar.gz
yum install -y gcc-c++
cd redis-5.0.5 # 換到redis解壓目錄下

make install prefix=/usr/local/redis_docker/redis

vim /usr/local/redis_docker/redis-5.0.5/redis.conf

bind 0.0.0.0 #0.0.0.0為不繫結ip

requirepass 610547 #設定密碼

masterauth 610547 #主從複製的驗證密碼

protected-mode no #關閉安全模式

logfile "/var/log/redis/redis-server.log" #日誌檔案

cluster-enabled yes #開啟集群配置

cluster-config-file nodes-6379.conf #集群配置檔案

cluster-node-timeout 15000 #集群超時時間

centos7安裝redis環境

centos7安裝redis環境 一 安裝os是centos7,安裝redis是目前最新版4.0.2,安裝的前提條件 需要安裝 gcc,使用命令 yum install gcc c wget三 解壓,使用命令 tar zxvf redis 4.0.2.tar.gz四 解壓後進入redis 4.0.2...

環境搭建 CentOS 7 安裝Redis

1,安裝編譯 yum y install gcc2,編譯與啟動 wget tar xf redis 4.0.6.tar.gz cd redis 4.0.6 make malloc libc cd src make install src redis server 啟動redis3,配置檔案 redi...

redis環境安裝

wget第二步 解壓redis壓縮包到指定目錄 tar zxvf redis 3.2.8.tar.gz c servers 第三步 安裝c程式執行環境 yum y install gcc c 第一種方式 使用壓縮包進行安裝 cd export softwares wget解壓tcl tar zxvf...