Here's my best guess:
You're entering the CONFIG GET while your Redis instance is functioning properly, but you haven't run it while this error is occuring. I have the feeling you will find that the running server's 'dir' parameter is '/etc/cron.d' while the error is being logged.
The cause? Again, this is a guess: Your Redis instance is somehow reachable from the world, and a malicious script is connecting to it and issuing commands to:
- Set your 'dir' to /etc/cron.d
- Write a key that will be interpreted as a cron.d entry (though the usual approach is an ssh authorized_keys file rather than a cron.d file)
- Schedule or invoke a background save, which will write a snapshot file to the 'dir' location
In the hope that your Redis is running as the privileged 'root' user and can create a file in /etc/cron.d that will be invoked by cron and the commands will grant the attacker privileged access to the server. But your Redis server is running as some other user that can't write to /etc/cron.d, so it just breaks snapshots and eventually Redis functionality.