Quantcast
Channel: Linux Server | cPanel | WebHosting
Viewing all articles
Browse latest Browse all 16

How to clear eximstats database

$
0
0

To clear your eximstats database follow these steps:

1. Login to MySQL:

mysql

Then run:

mysql> use eximstats;
mysql> delete from sends;
mysql> delete from smtp;
mysql> delete from failures;
mysql> delete from defers;

You can also drop and recreate eximstats:

mysqladmin drop eximstats
mysqladmin create eximstats
mysql eximstats < /usr/local/cpanel/etc/eximstats_db.sql

Hope this helps!


Viewing all articles
Browse latest Browse all 16

Trending Articles