আমি যখন কোনও অ্যাপ্লিকেশন কমান্ড দিয়ে পরীক্ষা করার চেষ্টা করি (যখন আমি ফ্যাব্রিক ব্যবহার করে মাইপ্রজেক্টটি স্থাপন করার চেষ্টা করেছি তখন এটি লক্ষ্য করেছি) যা এই আদেশটি ব্যবহার করে):
python manage.py test appname
আমি এই ত্রুটি পেয়েছি:
Creating test database for alias 'default'...
Got an error creating the test database: permission denied to create database
Type 'yes' if you would like to try deleting the test database 'test_finance', or 'no' to cancel
syncdb
কমান্ড কাজ মনে হচ্ছে। সেটিংসে আমার ডাটাবেস সেটিংস.পি:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'finance', # Or path to database file if using sqlite3.
'USER': 'django', # Not used with sqlite3.
'PASSWORD': 'mydb123', # Not used with sqlite3.
'HOST': '127.0.0.1', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}