1
2
3
4
5
6
7
8
9
10
11
12
13
14
| [Unit]
| Description=Redis In-Memory Data Store
| After=network.target
|
| [Service]
| User=redis
| Group=redis
| ExecStart=/usr/bin/redis-server /etc/redis/redis.conf
| ExecStop=/usr/bin/redis-cli shutdown
| Restart=always
| LimitNOFILE=10032
|
| [Install]
| WantedBy=multi-user.target
|
|