欢迎来到代码驿站!

Shell

当前位置:首页 > 脚本语言 > Shell

linux 开机自启动redis服务的方法

时间:2021-07-05 09:20:59|栏目:Shell|点击:
[Unit]
Description=The redis-server Process Manager
Documentation=https://redis.io/
After=network.target
[Service]
Type=forking
ExecStart=/root/redis-5.0.7/src/redis-server /root/redis-5.0.7/redis.conf
#有密码则需要在cli后面加 -a "密码"
ExecStop=/root/redis-5.0.7/src/redis-cli shutdown
[Install]
WantedBy=multi-user.target

1.先输入

vi /lib/systemd/system/redis.service

把上述配置复制进去,保存退出

2.设置开机自启动

systemctl enable redis

3.使用命令

#开启服务
systemctl start redis
#停止服务
systemctl stop redis
#查看运行状态
system status redis

总结

上一篇:一个监控LINUX目录和文件变化的Shell脚本分享

栏    目:Shell

下一篇:Shell编程中的特殊变量之进程状态变量介绍

本文标题:linux 开机自启动redis服务的方法

本文地址:http://www.codeinn.net/misctech/152918.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有