17 lines
316 B
SYSTEMD
17 lines
316 B
SYSTEMD
|
[Unit]
|
||
|
Description=Redis persistent key-value database
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/usr/bin/redis-server /etc/redis.conf --supervised systemd
|
||
|
ExecStop=/usr/libexec/redis-shutdown
|
||
|
Type=notify
|
||
|
User=redis
|
||
|
Group=redis
|
||
|
RuntimeDirectory=redis
|
||
|
RuntimeDirectoryMode=0755
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|
||
|
|