Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to write all bytes for _bisect.so [closed]

I was restoring a MongoDB environment, then it failed for no space in disk. After that I cannot execute any docker-compose command, in each attempt this error message is displayed: Failed to write all bytes for _bisect.so

I found some references about to free space in /tmp, although I want to be sure that was the best alternative of solution.

like image 978
Zainud Avatar asked Dec 11 '22 11:12

Zainud


2 Answers

Remove the docker images:

docker rmi $(docker images -f dangling=true -q)

UPDATE:

you can now use prune

docker system prune -af

https://docs.docker.com/engine/reference/commandline/system_prune/

like image 154
Etienne Gautier Avatar answered Apr 07 '23 22:04

Etienne Gautier


check df normally you will find 100% for /var/lib/docker and 100% for/ try to free some space, may be stop syslog service.

Then remove and restart your containers

recheck df now /var/lib/docker should be around 15%

like image 27
niz123ar Avatar answered Apr 07 '23 20:04

niz123ar