Centos8 Redis指定配置文件开机启动
2023-11-06
Centos8 Redis使用默认配置,开机启动命令:
$ systemctl enable redis
如果需要指定Redis配置文件,则需要新建一个系统服务文件,用来配置路径。
$ vi /etc/systemd/system/redis.service
内容如下,其中ExecStart这一项得按照实际环境来自定义,其他部分直接复制即可。
[Unit]
Description=redis-server
After=network.target
[Service]
Type=forking
ExecStart=/usr/bin/redis-server /home/user/conf/redis.conf
PrivateTmp=true
[Install]
WantedBy=multi-user.target
保存退出后,重载系统服务:
$ systemctl daemon-reload
参考资料:https://blog.51cto.com/u_13360/7131125