Skip to content

Instantly share code, notes, and snippets.

@kicco
Created July 22, 2017 19:14
Show Gist options
  • Save kicco/772cb0f2edd4c2dc2bf9d85bd394d8a7 to your computer and use it in GitHub Desktop.
Save kicco/772cb0f2edd4c2dc2bf9d85bd394d8a7 to your computer and use it in GitHub Desktop.
Redis 4.0 Systemd Ubunutu 16.04
[Unit]
Description=Redis In-Memory Data Store
After=network.target
[Service]
User=redis
Group=redis
Type=forking
LimitNOFILE=64000
ExecStart=/usr/local/bin/redis-server /etc/redis/redis.conf
ExecStop=/usr/local/bin/redis-cli shutdown
Restart=always
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment