I'm trying to deploy an Play 1 app with a Mysql database on cloudcontrol (it's like Heroku). I always get the error:
User 'xy' has exceeded the 'max_user_connections' resource (current value: 2)
I've set the connections to 1 in the application.conf
:
db.pool.minSize=1
db.pool.maxSize=1
But this didn't work.
I've found only a solution, for play 2: playframework 2.0 - exceeded max_user_connections on database evolutions?