This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Delete Data Disk Log Files?

In my dashboard it shows 56% used on my data disk of 3.6GB.  I didnt know I was using only 3.6G partition for that but oh well.

How do I delete whats on my data disk, which I'm assuming is all logs? So I can start fresh?  Thanks!


This thread was automatically locked due to age.
  • Hi, there are settings for log retention in the web admin.
    (logging - settings)

    Barry
  • hi, im actually having a similar problem on my log partition. it shows its 94% of 15gb and i actually had it shutdown at 95% this weekend.  I've tried clearing the logs after 1 day even but this just wont shrink.  I dont really need any of the logs right now-how can this be cleared?
  • Hi Decoy, it would be best to see which logs are using all the space... you may have some traffic getting logged that shouldn't be.

    please run
    ll -h /var/log
    and 
    du -h /var/log

    Barry
  • I would prefer the command

    cd /var/log
    du -k -s *|sort -n

    Then, have a look at the bootom lines, there you will see the directories which use the biggest parts of your log partition (numbers are in kilobytes).

    For me, the output of the above commands is (last 5 lines):
    37700   confd
    87492   smtp.log
    164804  packetfilter
    202772  reporting
    2081064 smtp

    so the reporting and the smtp directories contain the most data.
    If you don´t need the smtp logs any more, you can delete the smtp directory (as well as most other directories) by just issuing the command
    rm -rf /var/log/smtp/*
    This will wipe out all historical smtp logs.

    I wouldn´t do this with the reporting directory, as it contains some databases.

    As always, don´t do anything on the command line without knowing what you do - your support contract will be useless if you break anything.
    If you have a n ASg with support contract, it´s better to open a support case.
  • alright, well my reporting is 14mb of my 16gb log partition and thats the largest so, what is taking up nearly 15gb of my 16gb log partition?

    edit:
    FW1:/ #ii -h /var/log
    total 54M

    what is taking up all this space?
  • Hi,
    14mb or 14gb?

    what is 'ii -h'?

    Barry