我正在运行 djanog,我需要将我的数据库放在我想要连接的 vagrant 中。Apache 在我的本地电脑上运行。我应该如何在 vagrant 配置文件和 django 中的设置文件中设置端口转发,以便我可以连接到 vagrant 中的数据库。我当前的 django 数据库配置:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'db_name', # Or path to database file if using sqlite3.
'USER': 'root', # Not used with sqlite3.
'PASSWORD': 'db_pass', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
'OPTIONS': {
"init_command": "SET storage_engine=INNODB",
}
},
和流浪配置:
config.vm.network :forwarded_port, guest: 80, host: 8080
config.vm.network :forwarded_port, guest: 8000, host: 8001
谢谢