Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 282 Bytes

centos-redis.md

File metadata and controls

20 lines (16 loc) · 282 Bytes

CentOS 安装 redis

yum install redis

配置文件路径:/etc/redis.conf

开机自启动

#设置为开机自启动服务器
chkconfig redis on
#打开服务
service redis start
#查看运行状态
service redis status
#关闭服务
service redis stop