Hmm, the first two things come to mind.
Quote:
<database>
<host>localhost</host>
<port>3306</port>
<username>username</username>
<password>password</password>
<db>peq</db>
</database>
|
Did you fill this part (the username and password) out correctly?
Also, what version of MySQL are you using? You might need to tweak the password with the instructions found here.
http://dev.mysql.com/doc/refman/5.0/en/old-client.html
SET PASSWORD FOR 'some_user'@'localhost' = OLD_PASSWORD('newpwd');
Remember to do a backup of your schema using the admin tool before touching anything so you have a fallback position.