Home  >  Article  >  Database  >  How to configure Redis as a system service in CentOS

How to configure Redis as a system service in CentOS

藏色散人
藏色散人forward
2020-08-24 13:42:412326browse

The following column Redis tutorial will introduce to you how redisqueue implements the historical search function. I hope it will be useful to friends who need it. Helped!

How to configure Redis as a system service in CentOS

CentOS Configure Redis as a system service

Create redis.service

cd  /usr/lib/systemd/system
touch redis.service

Edit content

[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

Reload systemctl and start the service

systemctl daemon-reload
systemctl start redis.service

Check the status

systemctl status redis.service

Close Redis

systemctl stop redis.service

Auto-start at boot

systemctl enable redis.service

Whether it starts automatically at boot

systemctl is-enabled redis.service

The above is the detailed content of How to configure Redis as a system service in CentOS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:segmentfault.com. If there is any infringement, please contact admin@php.cn delete