码迷,mamicode.com
首页 > 其他好文 > 详细

redis

时间:2020-06-12 19:57:36      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:ystemd   serve   bin   conf   emd   rip   server   ted   start   

$ vi /lib/systemd/system/redis6379.service

[Unit]
Description=redis
After=network.target

[Service]
Type=forking
PIDFile=/var/run/redis/redis_6379.pid
ExecStart=/usr/local/redis/bin/redis-server /usr/local/redis/etc/redis_6379.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.target

:wq

 

$ systemctl enable redis6379.service 

$ systemctl start redis6379

$ systemctl status redis6379

redis

标签:ystemd   serve   bin   conf   emd   rip   server   ted   start   

原文地址:https://www.cnblogs.com/yuzhoumeigui/p/13109747.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!