感谢这位!
https://blog.csdn.net/abcwanglinyong/article/details/84638125
1.这是脚本文件里面加载配置文件 config 用来启动Redis服务器.
两个文件都是绝对地址.
前面三行是固定的,最后是我加的.
#!/bin/sh
#chkconfig: 2345 80 90
#description:rds.sh
/home/redis-4.0.2/src/redis-server /home/redis-4.0.2/redis.conf
2.上面内容写进文件 rds.sh ,并+X , 然后放入下面两个目录 .
chmod +x rds.sh
/etc/profile.d/rds.sh -这里要放
/etc/init.d/rds.sh -这里也要放
之后加入开机启动
chkconfig --add rds.sh -添加到系统服务
chkconfig rds.sh on -添加到开机启动
4.重启Linux服务器 ,查看效果
shutdown -r now
网友评论