You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
May 1011:22:12 linux redis-server[34057]: 34057:C 10 May 202111:22:12.368 # Fatal error, can't open config file '/etc/redis/6379.conf': No such fileordirectory
May 1011:22:12 linux systemd[1]: redis_6379.service: Main process exited, code=exited, status=1/FAILURE
-- Subject: Unit process exited
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
---- An ExecStart= process belonging to unit redis_6379.service has exited.
---- The process' exit code is 'exited' and its exit status is1.
It looks like the script is trying to start the service via systemd, but systemd is looking for the redis.conf file which was specified in the systemd template, but this has not been created yet due to redis having never been run yet. This is a bit of a catch 22.
So it would seem that a config file must be created before this step in the play can be run.
The text was updated successfully, but these errors were encountered:
I am getting via
journalctl -xfeu redis_6379
:It looks like the script is trying to start the service via systemd, but systemd is looking for the redis.conf file which was specified in the systemd template, but this has not been created yet due to redis having never been run yet. This is a bit of a catch 22.
So it would seem that a config file must be created before this step in the play can be run.
The text was updated successfully, but these errors were encountered: