Skip to content

Instantly share code, notes, and snippets.

@plainbanana
Last active October 11, 2017 17:43
Show Gist options
  • Save plainbanana/0ec1a4589637c4c2961a834f7a1b7677 to your computer and use it in GitHub Desktop.
Save plainbanana/0ec1a4589637c4c2961a834f7a1b7677 to your computer and use it in GitHub Desktop.
/etc/systemd/system/redis.service
[Unit]
Description = Redis In-Memory Data Store
After = network.target
[Service]
User = redis
Group = redis
ExecStart = /usr/local/bin/redis-server /etc/redis/redis.conf
ExecStop = /usr/local/bin/redis-cli shutdown
Restart = always
Type = simple
[Install]
WantedBy = multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment