xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/redis/redis-7/redis.service (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1[Unit]
2Description=Redis In-Memory Data Store
3After=network.target
4
5[Service]
6User=redis
7Group=redis
8ExecStart=/usr/bin/redis-server /etc/redis/redis.conf
9ExecStop=/usr/bin/redis-cli shutdown
10Restart=always
11LimitNOFILE=10032
12Type=notify
13
14[Install]
15WantedBy=multi-user.target
16
17