Hello my app wont work and the error message I keep getting is this:
django.db.utils.ProgrammingError: (1045, "1045 (28000): Access denied for user '<lonto81>'@'ip-10-146-173-159.ec2.internal' (using password: YES)", '28000')
However I can connect to MySQL database through the bash console using the same user name and pass as in my settings.py file here:
DATABASES = { 'default': { 'ENGINE': 'mysql.connector.django', 'NAME': '<lonto81>$<lonto81$default>', 'USER': '<lonto81>', 'PASSWORD': '<Memelove87!>', 'HOST': 'mysql.server', } } So I can't figure out why my app can't access the same database?