首頁 > 軟體

Redis資料庫的安裝和設定教學詳解

2022-05-26 14:07:56

1.Redis安裝

1.1.Linux環境安裝Redis

step-1:下載Redis

進入官網找到下載地址https://redis.io/download

wget https://github.com/redis/redis/archive/7.0.0.tar.gz

step-2:解包

tar -zvxf 7.0.0.tar.gz

step-3:編譯

 
cd redis-7.0.0
make

step-4:安裝

make install

step-5(方式一):啟動

cd src
redis-server

step-5(方式二):指定組態檔啟動

在redis的安裝目錄下有一個redis.conf組態檔

redis.conf檔案裡面沒有用的資訊比較多,使用cat命令過濾一下,生成一個新的組態檔

cat redis.conf | grep -v "#" | grep -v "^$" > redis-6379.conf

然後在這個組態檔修改自己需要的設定項,修改結束,啟動redis

redis-server redis-6379.conf

step-6:校驗

新建一個對談後在redis-4.4.0/src目錄下使用命令連線redis-cli

1.2.Windows環境安裝Redis

step-1:下載檔案

連結: https://pan.baidu.com/s/1gA3Je4M51D4LKRz8T75_dw 

提取碼: h4qd 

step-2:建立啟動檔案

Redis目錄下建立start.bat檔案,檔案內容為:

redis-server redis.windows.conf


IT145.com E-mail:sddin#qq.com