Applicable to:
- SolusIO
Symptoms
Backup tasks get stuck in pending state in SolusIO
Cause
SolusIO bug with ID #SIO-4216 which will be fixed in future SolusIO updates
Resolution
As a workaround:
- Connect to SolusIO Management node via SSH
- Fetch the password of Redis database inside solus stack config file:
# cat /usr/local/solus/config/config.yml | grep redis_password
- Access the container:
# docker exec -it `docker ps| grep solus_cache | awk {'print $1'}` sh
- Initialize the Redis cli with the command:
# redis-cli
- Authenticate using the password from step 1
# auth <pass>
- Select the tasks database:
# SELECT 1
- Remove backup_dispatch key:
# DEL "solus_cache:backup_dispatch"
Comments
0 commentsPlease sign in to leave a comment.