首頁  >  文章  >  資料庫  >  淺談Centos 7安裝Redis的方法

淺談Centos 7安裝Redis的方法

青灯夜游
青灯夜游轉載
2021-04-15 11:30:461578瀏覽

這篇文章帶大家了解Centos 7是如何安裝Redis的。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。

淺談Centos 7安裝Redis的方法

話不多說,直接開始。

一、安裝gcc依賴

redis 是用C 語言開發,安裝之前必先確認是否安裝gcc 環境(gcc -v) ,如果沒有安裝,請執行以下命令進行安裝。

$ yum install -y gcc

二、下載並解壓縮安裝套件

$ wget http://download.redis.io/releases/redis-5.0.7.tar.gz

$ tar -zxvf redis-5.0.7.tar.gz

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

$ cd redis-5.0.7 && make

四、安裝並指定安裝目錄

$ make install PREFIX=/usr/local/redis

【相關建議:Redis影片教學 】

五、啟動服務

5.1 前台啟動

$ cd /usr/local/redis/bin/

$ ./redis-server

#5.2後台啟動

從redis 的原始碼目錄複製redis.conf 到redis 的安裝目錄

$ cp /usr/local/redis-5.0.7/redis.conf /usr/local/redis/bin/

修改redis.conf 文件,把daemonize no 改為daemonize yes

$ vim redis.conf

################################# GENERAL #####################################

# By default Redis does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
daemonize yes

後台啟動

$ ./redis-server redis.conf

六、設定開機啟動

新增開機啟動服務

$ vim /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 設定成自己的路徑

設定開機啟動

#
$ systemctl daemon-reload

$ systemctl start redis.service

$ systemctl enable redis.service

建立redis 指令軟連結

$ ln -s /usr/local/redis/bin/redis-cli /usr/bin/redis

# 测试
$ redis

127.0.0.1:6379> ping
PONG
127.0.0.1:6379>

最後,貼常用指令~

# 启动redis服务
systemctl start redis.service

# 停止redis服务
systemctl stop redis.service

# 重新启动服务
systemctl restart redis.service

# 查看服务当前状态
systemctl status redis.service

# 设置开机自启动
systemctl enable redis.service

# 停止开机自启动
systemctl disable redis.service

OK~完事~

更多程式相關知識,請造訪: 程式設計影片! !

以上是淺談Centos 7安裝Redis的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除