centos7.6 yum 安装 redis

yum下载fedora的epel仓库(不然找不到安装源)

[root@lch ~]# yum install epel-release

 

yum安装redis

[root@lch ~]# yum install redis

 

启动redis服务

[root@lch ~]# service redis start

停止redis服务

[root@lch ~]# service redis stop

查看redis运行状态

[root@lch ~]# service redis status

centos7.6 yum 安装 redis_第1张图片

查看redis进程

[root@lch ~]# ps -ef | grep redis

设置redis为开机启动

[root@lch ~]# chkconfig redis on

你可能感兴趣的:(redis,centos,linux)