I want to make connection with my MySQL database which is deployed on Heroku. However, after setting parameters for database I am getting this error:
django.db.utils.OperationalError: (1044, "Access denied for user '*mu username*'@'%' to database '*name of my database*'")
In my settings.py :
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': '*name of my database*',
'USER': '*my username*',
'PASSWORD': '*my password*',
'HOST': 'eu-cdbr-west-01.cleardb.com',
'PORT': '3306',
}
}