redis5 0 4安裝配置

2022-08-20 14:12:08 字數 850 閱讀 8854

wget

2、解壓到opt目錄

tar -zxvf redis-5.0.4.tar.gz -c /opt/

3、安裝gcc編譯工具

yum install gcc gcc-c++ -y

4、進入安裝目錄

cd /opt/redis-5.0.4/

5、開始編譯安裝

make

6、修改redis配置檔案

vim /opt/redis-5.0.4/redis.conf

bind 127.0.0.1 192.168.0.57           #redis繫結位址,最好只繫結內網ip

protected-mode no                         #關閉保護模式

port 7843                                        #修改埠

timeout 180                                    #客戶端超時時間

daemonize yes                              #後台啟動

rdbcompression no

dbfilename barrage-redis.rdb

dir /opt/redis-5.0.4/

7、啟動redis

/opt/redis-5.0.4/src/redis-server /opt/redis-5.0.4/redis.conf

8、加入開機自啟動

echo '/opt/redis-5.0.4/src/redis-server /opt/redis-5.0.4/redis.conf' >> /etc/rc.local

Centos7 4安裝Redis 5 0 4單機版

1.安裝環境 root bosslll yum install gcc c 2.redis安裝 2.1 將linux版本的安裝包上傳到linux伺服器指定路徑 這裡用了xftp進行上傳 2.2 解壓安裝包 root bosslll tar zxvf redis 5.0.4.tar.gz c usr ...

在centos7上安裝redis5 0 4

參考redis 5.0.5.tar.gz 安裝 tar zxvf redis 5.0.4.tar.gz,解壓會生成乙個redis 5.0.4的目錄 進入此目錄 安裝gcc依賴 yum install gcc gcc c 此時試圖用make命令安裝redis仍然出錯 參考zmalloc.h 50 31...

redis 安裝 配置

redis的安裝 配置 安裝步驟如下 wget wget tar zxvf redis 2.6.14.tar.gz cd redis 2.6.14 直接make就行了 make 執行完後,執行 make test 如果報如下錯誤 cd src make test you need tcl 8.5 o...