I tried connecting my database to my django app 1.10 and i followed the directions on how to set it up and connect it to my app but when i go to my bash console in my app directory and run python manage.py inspectdb
or anything that has to do with the database i get
django.db.utils.OperationalError: (2005, "Unknown MySQL server host '<MovieHd.mysql.pythonanywhereservices.com>' (0)")
I have my setting file as so
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': '<your_username>$<your_database_name>',
'USER': '<your_username>',
'PASSWORD': '<your_mysql_password>',
'HOST': '<MovieHd.mysql.pythonanywhere-services.com>',
}}
and i did replace the other fields with my username, database name, and password. What should i check and do to resolve this problem