Initially I was facing this error in Django when I tried to upload some new data to a newly created MySQL (just have migrated from SQLite):
django.db.utils.OperationalError: (2003, "Can't connect to MySQL server on '*****.mysql.pythonanywhere-services.com' (60)")
Then I read this forum and tried to debug this. As I understand the command below executed in PA Bash should work:
(h2h_env) 17:21 ~/h2h_project (main)$ mysql -u skyscanner -h skyscanner.mysql.pythonanywhere-services.com -p
Enter password:
ERROR 1045 (28000): Access denied for user '*****'@'10.0.0.144' (using password: YES)
I've created a new database password recently and I know for sure that this should be correct one, but it does not allow me. As if it was still remembering some older password (I did have other databases as well, but I'm not using them anymore). Probably my issue is simple and has something to do with the authentication, but I can't figure it out