Direct Admin not unzipping again

dorucrisan

Verified User
Joined
Oct 23, 2021
Messages
228
Location
Bucharest / Romania
Starting today, DA can not unzip zip file created with DA. What is happening? I tried on 2 servers, same issue, both servers updated running Alma Linux 10 + DA. All worked fine until today.

1784909363257.png
 
Please open a support ticket. There were not changes in the archive handling for a while. It is unlikely to be related to the server update.
 
Problem solved. All was because for unknown reason /home went to 100%. Any idea what can cause that? Server is hosting 2 Prestashop web shops nothing else and there is plenty of space, like 500G hard drive. One store is around 10-11G.
 
Problem solved. All was because for unknown reason /home went to 100%. Any idea what can cause that? Server is hosting 2 Prestashop web shops nothing else and there is plenty of space, like 500G hard drive. One store is around 10-11G.
You can try checking your /home/ folder to find out which directory is the largest:
Code:
du -hs /home/* | grep -E 'M|G
and then check that the largest folder again. And as the result you will come to the place which uses a lot of disk space.

Also you can use "ncdu" command:
Code:
ncdu /home
It works faster, but it should be installed additionally via YUM or APT OS package manager.
 
Back
Top