django.db.utils.OperationalError: (1045, "Access denied for user 'root'@'cloud sql proxy~106.208.27.239' (using password: YES)") code example

Example 1: django.db.utils.OperationalError: (1045, "Access denied for user 'root'@'localhost' (using password: YES)")

You need to make changes in project settings.py. 
Provide USER and PASSWORD for your database
If your database isn't mysql change ENGINE

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'myproject',
        'USER': 'root',
        'PASSWORD': 'rootpassword',
        'HOST': 'localhost',
        'PORT': '',
    }
}

Example 2: django.db.utils.OperationalError: (1045, "Access denied for user 'root'@'localhost' (using password: YES)")

mysql> grant all privileges on *.* to root@localhost identified by 'password' with grant option;

Tags:

Sql Example