文章詳情頁
CentOS系統中使用yum命令安裝redis的方法
瀏覽:143日期:2022-06-06 18:16:26
在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 05:32 pts/0 00:00:00 grep –color=auto redis
相關文章:
1. Centos 7安裝Rclone如何用命令同步國外網盤文件?2. Centos7安裝Chacha20加密算法詳解3. centos7使用docker部署gitlab-ce-zh應用詳解4. centos7怎么進去tmp目錄并清除垃圾?5. 在CentOS 6.5上如何安裝Screen?在CentOS 6.5上安裝Screen的方法6. CentOS7中無法找到pci find device函數的解決方法7. mysql8.0.23 linux(centos7)安裝完整超詳細教程8. centos7怎么關閉ipv6僅使用ipv4?9. centos7安裝clickhouse并設置用戶名密碼案例詳解10. 在CentOS或RHEL 7上修改主機名的方法
排行榜
