I am using rails and want to run sidekiq and running sidekiq requires a Redis server to be installed. I installed Redis for my KDE Neon by following the instructions from the digital ocean. Here is the error that is displayed when I try to run sudo systemctl status redis
:
redis.service - Redis In-Memory Data StoreLoaded: loaded (/etc/systemd/system/redis.service; enabled; vendor preset: enabled)Active: failed (Result: exit-code) since Wed 2021-03-24 17:24:12 IST; 6s agoProcess: 47334 ExecStart=/usr/local/bin/redis-server /etc/redis/redis.conf (code=exited, status=203/EXEC)Main PID: 47334 (code=exited, status=203/EXEC)Mar 24 17:24:12 maxagno3 systemd[1]: redis.service: Scheduled restart job, restart counter is at 5.Mar 24 17:24:12 maxagno3 systemd[1]: Stopped Redis In-Memory Data Store.Mar 24 17:24:12 maxagno3 systemd[1]: redis.service: Start request repeated too quickly.Mar 24 17:24:12 maxagno3 systemd[1]: redis.service: Failed with result 'exit-code'.Mar 24 17:24:12 maxagno3 systemd[1]: Failed to start Redis In-Memory Data Store.
Using redis-cli
works fine. I assume when I first ran the command sudo systemctl disable redis
it deleted the redis.service file. Since then I have uninstalled and installed the Redis but still, the error persists.
Quick help would greatly be appreciated.