OK, so I'm trying to connect a datasource to a MySQL database. When I put in all my info I get this error:

Connection verification failed for data source: phoenix3
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
The root cause was that: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.

and I can't seem to fix it... Help me please.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Check your settings in mySql for max connections.

http://forums.mysql.com/read.php?39,181940,226710#msg-226710

Possibly MySql is blocking your CFserver for some reason, possibly too many login failures by your cf user? if so try flushing your hosts.

http://www.oscararevalo.com/index.cfm/2010/10/28/Getting-MySQLNonTransientConnectionException-errors-Then-Your-MySQL-Server-Might-Be-Angry-At-You

link|improve this answer
nice sugestion but i think i fall under the catagory of "your MySQL server is not liking you at the moment" since i got that error and i tried to flush the host but i got an error :'( – Trevor Rudolph May 25 '11 at 3:20
you would have to use a different system and probably different user to flush. – invertedSpear May 25 '11 at 16:15
it seems that unix uses "trevor" as the username for mysql commands – Trevor Rudolph May 26 '11 at 1:10
feedback

You probably just changed the password, or the table privileges have been altered.

I have a mixed server running ColdFusion 9, PHP 5, and Ruby 1.9.2. I set up CF9 and MySQL and they were happy together. I named the CF user 'wwwrun' (legacy from a previous CFMX install of the same app). Later, I was setting up the PHP portion of my heterogeneous application and did a GRANT statement for a set of WordPress tables for the same user ('wwwrun')...but made the mistake of assigning a different password. The WordPress portion worked fine, but all of sudden my CF stuff was throwing this error.

Doh!

I had changed the password for the 'wwwrun' user. You may have inadvertently done the same. This is the error the JDBC driver gives when it fails password authentication. Not a very informative error message IMO.

link|improve this answer
it was because i was on a mac using xampp – Trevor Rudolph Mar 24 at 16:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.