I have a docker image which is being run in a Bitbucket pipeline, pretty standard stuff
Everything was running fine before I updated the docker image. Then service redis-server restart results in the error "Service redis-server: failed".
Journalctl -xe is empty
/var/log/redis.log is empty
Every log file is empty, stdout is empty, error code is empty
The OS is ubuntu 20.04 and redis version is Redis server v=5.0.7 sha=00000000:0 malloc=jemalloc-5.2.1 bits=64 build=636cde3b5c7a3923
Any advice?
Comment From: oranagra
try to execute redis manually (possibly with the same config file). maybe you'll see what's the problem.
Comment From: gofish543
That's the weird part... starting redis manually works.
Upon editing /etc/init.d/redis.service to print out the start-stop-daemon error code, it prints the error code of 2. I've got no idea what this means and is way out of my knowledge scope
Comment From: gofish543
Downgrading the docker container to Ubuntu 18.04 and redis 4 fixes the problem.
So something is wrong with Ubuntu 20.04 and 5.0.7 within a bitbucket pipeline