As a rule I always execute the following commands on a fresh
database installation. Then for each user that is granted
privileges, of course they are given a password and the host
permissions are locked down as much as possible for their needs,
alternately table and column privs as well. I’m not going to get
into the parts the manual covers, but rather mention a couple of
things on my mind.
First the initial commands:
mysql> use mysql
mysql> delete from user where User='';
mysql> delete from db where User='';
mysql> update user set Password=password('password_here')
where User=’root’;
mysql> flush privileges;
However, one thing I’ve noticed is that when you hand over a
server to someone that doesn’t necessarily follow your same
understanding or regard to user privilege security, bad things
can happen. Such as users created without a password. …
[Read more]