目錄
- 一、安裝gcc依賴
- 二、下載并解壓安裝包
- 三、cd切換到redis解壓目錄下,執(zhí)行編譯
- 四、安裝并指定安裝目錄
- 五、啟動服務
- 六、設置開機啟動
話不多說,直接開始。
一、安裝gcc依賴
redis 是用 C 語言開發(fā),安裝之前必先確認是否安裝 gcc 環(huán)境(gcc -v
),如果沒有安裝,執(zhí)行以下命令進行安裝。
二、下載并解壓安裝包
$ wget http://download.redis.io/releases/redis-5.0.7.tar.gz
$ tar -zxvf redis-5.0.7.tar.gz
三、cd切換到redis解壓目錄下,執(zhí)行編譯
四、安裝并指定安裝目錄
$ 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.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
添加下面內(nèi)容
[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
創(chuàng)建 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
# 查看服務當前狀態(tài)
systemctl status redis.service
# 設置開機自啟動
systemctl enable redis.service
# 停止開機自啟動
systemctl disable redis.service
OK~完事~
到此這篇關于Centos 7 如何安裝Redis的文章就介紹到這了,更多相關Centos 7安裝Redis內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- CentOS7安裝配置 Redis的方法步驟
- Centos7下Redis3.2.8最新版本安裝教程
- CentOS 7下安裝 redis 3.0.6并配置集群的過程詳解
- 詳解在Redis在Centos7上的安裝部署
- 在CentOS 7環(huán)境下安裝Redis數(shù)據(jù)庫詳解