Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ENOSPC no space left on device -Nodejs

Tags:

node.js

I just built an application with expressJs for an institution where they upload video tutorials. At first the videos were being uploaded to the same server but later I switched to Amazon. I mean only the videos are being uploaded to Amazon. Now I get this error whenever I try to upload ENOSPC no space left on device. I have cleared the tmp file to no avail.I need to say that I have searched extensively about this issue but none of d solutions seems to work for me

like image 775
Yinka Avatar asked May 02 '18 19:05

Yinka


People also ask

What do you do when there is no space left on your device?

No space left on device Print No space left on device error often means you are over quota in the directory you're trying to create or move files to. 1. If you are trying to move a file from another location, change the group ownership of the file before moving it or use the copy command instead.

How do I get rid of no space left on device Linux?

Such difference between the output of du -sh and df -h may happen if some large file has been deleted, but is still opened by some process. Check with the command lsof | grep deleted to see which processes have opened descriptors to deleted files. You can restart the process and the space will be freed.

What does it mean when Safari says no space left on device?

When there's no more space left on your Mac, macOS notifies you that “Your disk is almost full.” Begin by checking the storage capacity in the Apple menu > Storage > About This Mac. The quickest way to free up space is to clear cache files.

How do I fix Oserror Errno 28 No space left on device?

Your local folder does not have enough space available for the operation. In your environment, update the 'TEMP', 'TMPDIR' or 'TMP' environment variable to a location with additional free space. Validate the updated location: Windows - command-prompt 'set'


1 Answers

Just need to clean up the Docker system in order to tackle it. Worked for me.

$ docker system prune 

Link to official docs

like image 132
Renjith Avatar answered Sep 28 '22 10:09

Renjith