首頁  >  文章  >  系統教程  >  CentOS系統中安裝redis的步驟和yum指令

CentOS系統中安裝redis的步驟和yum指令

王林
王林轉載
2023-12-31 13:24:181237瀏覽

在linux CentOS系統中使用yum指令安裝redis報錯:

[root@localhost install]# yum install redis
Loaded plugins: fastestmirror
Setting up Install Process
Determining fastest mirrors
 * base: mirrors.skyshe.cn
 * extras: mirrors.163.com

這是因為,centos預設的安裝來源在官方centos.org上,而Redis在第三方的yum來源裡,所以無法安裝,非官方的yum推薦用fedora的epel倉庫

使用以下指令安裝第三方函式庫: yum install epel-release

#再安裝redis 即可:yum install redis

#使用service redis start指令啟動redis服務端:

[root@localhost etc]#service redis start Redirecting to /bin/systemctl start redis.service

使用ps -ef | grep redis檢視redis進程:

[root@localhost etc]# ps -ef | grep redis redis 47664 1 0 05:31 ? 00:00:00 /usr/bin/redis-server 127.0.0.1:6379 root 47808 45376 0 ts /0 00:00:00 grep –color=auto redis

以上是CentOS系統中安裝redis的步驟和yum指令的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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