-1
我需要訪問遠程數據庫服務器(linux),並將其轉儲到我的本地(mac)。如何遠程訪問PostgreSQL數據庫並將其轉儲到本地?
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'test-name',
'USER': 'test-user',
'PASSWORD': 'pwd',
'HOST': 'test.amazonaws.com',
}
}
這可能會派上用場:http://stackoverflow.com/a/37674134/3886053 –