Forum Discussion

Kirit_Patel_521's avatar
Kirit_Patel_521
Icon for Nimbostratus rankNimbostratus
Mar 09, 2010

Log problem

Folks

 

 

 

I am getting a message on my LTM as follows:

 

 

 

Log disk usage still higher than 80% after logrotate and 24 times log deletion

 

 

I went to the /shared directory and I see this file which is pretty big but I did a search and it says don't delete this file because u will loose logs

 

 

 

7006848 -rw-r--r-- 1 root root 7168000000 Dec 1 2008 .LoopbackLogFS

1 Reply

  • Hi Kirit,

     

     

    What does df -h show for total size and used % for /shared?

     

     

    You can use find to search for large files:

     

     

    Print files over 10Mib

     

    find /shared -type f -size +10000k -exec ls -lah {} \; | sort +4n

     

     

    Aaron