我已经在Heroku中部署了Django应用。它具有一些登录功能和数据填充功能。我想知道这些信息存储在哪里?我怎么去拜访他们?
此外,在Django应用程序中,我添加了一些连接到本地MySQL数据库的功能。但是在部署的Web中,连接被拒绝。我该如何解决这个问题?我在Heroku中很新。
这是设置和查看部分。
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
"bootstrap3",
# my application
"learning_logs.apps.LearningLogsConfig",
"users.apps.UsersConfig",
"django_forms_bootstrap",
"ncbi_crawler",
)
DATABASES = {
#'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
#}
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mall',
'USER': 'rinka',
'PASSWORD': 'xxxxx',
'HOST': 'localhost',
'PORT': '3306',
}
}
这是视图部分。
def results(request):
data=[]
data1 = []
owner = request.user
owner = str(owner)
db = MySQLdb.connect(user='root', db='crawling', passwd='xxxx', host='localhost')
cursor = db.cursor()
cursor.execute("SELECT search_content, pmid, journal, title, author, institute, abstract, article_info FROM result_split where username = '%s'" % (owner))
data = cursor.fetchall()
db.close()
return render(request, "learning_logs/results.html", {"datas": data})
答案 0 :(得分:1)
如果您已使用git(git push heroku master
)路由部署了应用程序,则始终可以通过heroku run python manage.py dbshell
之类的命令从“ heroku cli”进行连接
注意-您将无法在Heroku实例上访问本地数据库(我假设您的意思是笔记本电脑/台式机/计算机上的数据库,无论您使用的工作方式如何)。