设置redis开机启动

1、修改配置文件

设置redis.conf中daemonize为yes,确保守护进程开启。

2、创建脚本 /etc/init.d/redis

#!/bin/bash
#chkconfig: 2345 10 90

cd /usr/local/myroom/redis-5.0.4/bin
./redis-server redis.conf

3、设置开启启动

chkconfig redis on

 

posted @ 2022-06-03 09:42  雷雨客  阅读(541)  评论(0编辑  收藏  举报