Reputation: 1431
I'm dabbling with Heroku and managed to deploy a simple app. I added a ClearDB MySQL database instance that lives here:
mysql://[user]:[password]@us-cdbr-iron-east-04.cleardb.net
I'm trying to connect to it using "dbforge for mysql" but I'm not sure if this is possible. Anyone know if this would be possible? Below shows what the dbforge connection interface looks like as well as the error I get while trying to connect.
Upvotes: 0
Views: 3319
Reputation: 10318
In the screenshot you show, the port is 1
, which is incorrect. Check your DATABASE_URL
to get the correct port or try 3306
, which is the default MySQL port.
In addition, you may need to download and configure the SSL certificates.
Upvotes: 1