Redis 学习笔记 2.2.1 Redis配置成系统服务(CentOS7)

  1. 进入到redis安装目录,具体位置看你安装时的路径了。
# cd /root/tools/redis-5.0.4/
  1. 编辑配置文件
# vim redis.conf 
  1. 将如下配置项注释掉
#bind 127.0.0.1
  1. 如下项修改为yes,默认是no
daemonize yes
  1. 修改pid文件路径,此处可选,使用默认路径也可以。
# If a pid file is specified, Redis writes it where specified at startup
# and removes it at exit.
#
# When the server runs non daemonized, no pid file is created if none is
# specified in the configuration. When the server is daemonized, the pid file
# is used even if not specified, defaulting to "/var/run/redis.pid".
#
# Creating a pid file is best effort: if Redis is not able to create it
# nothing bad happens, the server will start and run normally.
pidfile /var/run/redis_6379.pid
  1. 取消保护模式,此处可选。取消了便不要求使用密码验证了。
protected-mode no
  1. 保存文件。

  2. 新建 service 文件

sudo vim /usr/lib/systemd/system/redis.service
  1. 新建 pid 文件
# cd /var/run/
# touch redis_6379.pid
  1. 写入如下内容,具体文件路径,各异。
[Unit]
Description=Redis
After=syslog.target network.target remote-fs.target nss-lookup.target

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

[Install]
WantedBy=multi-user.target
  1. 重载系统服务
sudo systemctl daemon-reload
  1. 启动redis
sudo systemctl start redis

END


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值