Open
Description
Add ability to restore a redis server from an rdb dump.
The basic workflow for this operation is the following:
- Turn off
appendonly
on the server usingredis-cli
- Shutdown the server using
redis-cli
- Stop the
redis
service - Rename or remove old
.aof
and.rdb
files for safety - Copy desired
.rdb
- Start the
redis
service
The primary issue is accomplishing 3 and 6, considering that these steps would require os-specific interactions