Site icon NgDeveloper

AWS Linux Commands

Hdd full / EBS Volume full / No space left

you can check the total and vailable space using,

df -h

And then run the below command which displays the high data space files (kind of log files)

sudo find / -type f -printf '%12s %p\n' 2>/dev/null|awk '{if($1>999999999)print $0;}'
sudo du -shx /* | sort -h

And then you can delete in case you don’t need those files,

sudo rm -rf /root/.pm2/logs/local-error.log

Exit mobile version