CentOS7安裝Redis

panweiheng發表於2021-05-12

一、安裝gcc依賴
由於 redis 是用 C 語言開發,安裝之前必先確認是否安裝 gcc 環境(gcc -v),如果沒有安裝,執行以下命令進行安裝
yum -y install gcc

二、下載並解壓安裝包
wget download.redis.io/releases/redis-5....
tar -zxvf redis-5.0.3.tar.gz

下載最新穩定版
➜  wget http://download.redis.io/redis-stable.tar.gz

三、cd切換到redis解壓目錄下,執行編譯
cd redis-5.0.3
make

四、安裝並指定安裝目錄
make install PREFIX=/usr/local/redis

五、啟動服務

5.1前臺啟動
cd /usr/local/redis/bin/
./redis-server

5.2後臺啟動
從 redis 的原始碼目錄中複製 redis.conf 到 redis 的安裝目錄
cp /usr/local/redis-5.0.3/redis.conf /usr/local/redis/bin/

修改 redis.conf 檔案,把 daemonize no 改為 daemonize yes

後臺啟動
./redis-server redis.conf

六、設定開機啟動
新增開機啟動服務:vi /etc/systemd/system/redis.service
複製貼上以下內容:
[Unit]
Description=redis-server
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/redis/bin/redis-server /usr/local/redis/bin/redis.conf
PrivateTmp=true

[Install]
WantedBy=multi-user.target
注意:ExecStart配置成自己的路徑

建立軟連結
建立軟連結是為了下一步系統初始化時自動啟動服務
ln -s /lib/systemd/system/redis.service /etc/systemd/system/multi-user.target.wants/redis.service

設定開機啟動
systemctl daemon-reload
systemctl start redis.service
systemctl enable redis.service

建立 redis 命令軟連結
ln -s /usr/local/redis/bin/redis-cli /usr/bin/redis

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章