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.
Parents
  • 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.
Reply
  • 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.
Children
No Data