On Thu, 4 Apr 2002 20:56:59 -0700
"Dan Egli" <dmegli@???> wrote:
> Tried and still no go. Here's the exact steps I took:
>
> 1) (as root in Mysql using the mysql database)
> delete from user where user='exim';
> 2) flush privileges;
> 3) exit mysql
> 4) reenter mysql
> 5) grant ALL PRIVILEGES on exim.* to exim IDENTIFIED BY PASSWORD
> 'testpw'; 6) flush privileges;
> 7) exit Mysql;
> 8) Attempt to log into mysql as exim, get blocked
What about deleting the exim table itself?
drop database exim;
Then recreate the database before you grant all on it.