1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| [Unit]
| Description=Redis data structure server
| Documentation=https://redis.io/documentation
| After=network.target
|
| [Service]
| Type=notify
| User=redis
| Group=redis
| ExecStart=/usr/bin/redis-server --supervised systemd --daemonize no
| TimeoutStartSec=5
| TimeoutStopSec=5
| CapabilityBoundingSet=
| PrivateTmp=true
| PrivateDevices=true
| ProtectSystem=full
| ProtectHome=true
| NoNewPrivileges=true
| RuntimeDirectory=redis
| RuntimeDirectoryMode=755
| LimitNOFILE=10032
|
| [Install]
| WantedBy=multi-user.target
|
|