mysql.exe 실행시 아래 오류가 뜰 경우 

Error 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)

대신 아래와 같이 실행

mysql -uroot -p

mysql> use mysql;

mysql> grant all privileges on *.* to 'account'@'%' identified by 'password';

mysql> flush privileges; 

Posted by 구룡포과메기
,