Created
October 4, 2016 14:27
-
-
Save ordoghl/5177f4c099cb335e139f17118a4e17fe to your computer and use it in GitHub Desktop.
redis systemd unit file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Description=Redis In-Memory Data Store | |
After=network.target | |
[Service] | |
Type=forking | |
User=redis | |
Group=redis | |
Environment=statedir=/run/redis | |
PermissionsStartOnly=true | |
PIDFile=/run/redis/redis.pid | |
ExecStartPre=/bin/touch /var/log/redis.log | |
ExecStartPre=/bin/chown redis:redis /var/log/redis.log | |
ExecStartPre=/bin/mkdir -p ${statedir} | |
ExecStartPre=/bin/chown -R redis:redis ${statedir} | |
ExecStart=/usr/local/bin/redis-server /etc/redis/redis.conf | |
ExecStop=/usr/local/bin/redis-cli shutdown | |
ExecReload=/bin/kill -USR2 $MAINPID | |
Restart=always | |
RestartSec=3 | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment