Redis does not startup after a reboot

I think redis was trying to start before an IP address was available. I was able to resolve the issue by adding a longer delay before trying to start redis during startup.

rpi-rw
sudo nano /etc/rc.local

Then change “sleep 3” to “sleep 10”.

 # Start / Restart services,they should run happy now log dir's are created
  sleep 10
2 Likes