Umm... I think that's exactly what I said. I'm sorry if I wrote it unclearly.
# mysql -u root -p create database easylistdb; create user 'easylist'@'%' identified by 'easylist'; create user 'easylist'@'localhost' identified by 'easylist'; set password for 'easylist'@'%' = password('easylist'); set password for 'easylist'@'localhost' = password('easylist'); connect easylistdb; grant all privileges on *.* to 'easylist'@'%' with grant option; grant all privileges on *.* to 'easylist'@'localhost' with grant option; flush privileges; exit;
# mysql -u root -p mysql> connect easylistdb; mysql> source /tmp/willemliu_ezlist.sql;