I am trying to run my Django project on a VPS. My Django project uses MySQL. While running it on my local computer I used the following code to connect MySQL to Django
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'db_name',
'USER': 'root',
'PASSWORD': 'password',
'HOST': 'localhost',
'PORT': 3306}
}
What must be the 'USER','HOST','PORT' here while connecting to MySQL?