在Django中設置服務器時出現此錯誤。這是sqlite3這意味着它應該創建.db文件,但它似乎並沒有這樣做。我已經規定SQLite作爲後端和一個絕對的文件路徑來放置它,但沒有運氣。sqlite3.OperationalError:無法打開數據庫文件
這是一個錯誤還是我做錯了什麼? (只是在想,是在Ubuntu不同指定的絕對路徑?)
這裏是我的settings.py文件的開頭:
# Django settings for OmniCloud project.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
# ('Your Name', '[email protected]'),
)
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '~/Harold-Server/OmniCloud.db', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # 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.
}
}
可惜的是,原來的錯誤信息並沒有覆蓋導致錯誤的文件名,這可能會有所幫助。 – Hartmut