摘要:下面由Redis教程栏目给大家介绍redis队列实现历史搜索功能的方法,希望对需要的朋友有所帮助!CentOS 将 Redis 配置为系统服务创建 redis.servicecd /usr/lib/systemd/system
下面由Redis教程栏目给大家介绍redis队列实现历史搜索功能的方法,希望对需要的朋友有所帮助!
CentOS 将 Redis 配置为系统服务
创建 redis.service
cd /usr/lib/systemd/system touch redis.service
编辑内容
[Unit] Description=Redis Server After=network.target [Service] PIDFile=/var/run/redis_6379.pid ExecStart=/usr/local/bin/redis-server /etc/redis.conf ExecStop=/usr/local/bin/redis-cli -a passwd shutdown ExecReload=/bin/kill -s HUP $MAINPID [Install] WantedBy=mutli-user.target
重新载入 systemctl 并启动服务
systemctl daemon-reload systemctl start redis.service
查看状态
systemctl status redis.service
关闭 Redis
systemctl stop redis.service
开机自启
systemctl enable redis.service
是否开机自启
systemctl is-enabled redis.service
相关文章推荐
网站谷歌评分90+意味着什么?2022-09-06
怎样将不安全网站变成安全网站访问?2022-09-26
网站排名下降,可能跟算法更新没关系2022-09-20
网站如何设置高质量的网页标题?2022-09-14
做外贸网站选哪些语言?法语、德语最吃香2022-09-13