本文小編為大家詳細(xì)介紹“centos7怎么安裝redis”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“centos7怎么安裝redis”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
成都創(chuàng)新互聯(lián)2013年至今,先為興海等服務(wù)建站,興海等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為興海企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。由于 redis 是用 C 語言開發(fā),安裝之前必先確認(rèn)是否安裝 gcc 環(huán)境(gcc -v),如果沒有安裝,執(zhí)行以下命令進(jìn)行安裝
[root@localhost local]# yum install -y gcc
[root@localhost local]# wget /tupian/20230522/redis-5.0.3.tar.gz [root@localhost local]# tar -zxvf redis-5.0.3.tar.gz
[root@localhost local]# cd redis-5.0.3 [root@localhost redis-5.0.3]# make
[root@localhost redis-5.0.3]# make install PREFIX=/usr/local/redis
[root@localhost redis-5.0.3]# cd /usr/local/redis/bin/ [root@localhost bin]# ./redis-server
從 redis 的源碼目錄中復(fù)制 redis.conf 到 redis 的安裝目錄
[root@localhost bin]# cp /usr/local/redis-5.0.3/redis.conf /usr/local/redis/bin/
修改 redis.conf 文件,把 daemonize no 改為 daemonize yes
[root@localhost bin]# vi redis.conf
后臺啟動(dòng)
[root@localhost bin]# ./redis-server redis.conf
添加開機(jī)啟動(dòng)服務(wù)
[root@localhost bin]# vi /etc/systemd/system/redis.service
復(fù)制粘貼以下內(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配置成自己的路徑
設(shè)置開機(jī)啟動(dòng)
[root@localhost bin]# systemctl daemon-reload [root@localhost bin]# systemctl start redis.service [root@localhost bin]# systemctl enable redis.service
創(chuàng)建 redis 命令軟鏈接
[root@localhost ~]# ln -s /usr/local/redis/bin/redis-cli /usr/bin/redis
測試 redis
服務(wù)操作命令
systemctl start redis.service #啟動(dòng)redis服務(wù) systemctl stop redis.service #停止redis服務(wù) systemctl restart redis.service #重新啟動(dòng)服務(wù) systemctl status redis.service #查看服務(wù)當(dāng)前狀態(tài) systemctl enable redis.service #設(shè)置開機(jī)自啟動(dòng) systemctl disable redis.service #停止開機(jī)自啟動(dòng)
讀到這里,這篇“centos7怎么安裝redis”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。