Filed under:
How do I clear the exim sendmail statistics on CPanel / WHM ?
If the size of your eximstats database is getting large ( you can check the DB space usage using du )then you can clean the database entries. You may also wish to blank the current exim log files at /var/log/exim*
- du -s -h /var/lib/mysql/eximstats
If you want to clean the eximstats MySQL database, from an SSH prompt type...
Then from with the MySQL application type...
- mysql eximstats
- delete from sends;
- delete from smtp;
If you want to remove the existing log entries, from an SSH prompt type...
Then restart the exim service ...
- cd /var/log
- rm -fr exim*.1
- rm -fr exim*.2
- rm -fr exim*.3
- rm -fr exim*.4
- rm -fr exim_mainlog ; touch exim_mainlog ; chown mailnull.mail exim_mainlog
- rm -fr exim_paniclog ; touch exim_paniclog ; chown mailnull.mail exim_paniclog
- rm -fr exim_rejectlog ; touch exim_rejectlog ; chown mailnull.mail exim_rejectlog
- service exim restart
Add to Favourites Print this Article
Also Read