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