I'm installing graphite 0.9.15 on Ubuntu Server 16.04 LTS. During configuration step
cd /opt/graphite/webapp/graphite sudo cp local_settings.py.example local_settings.py
Then using the command in the official installation instruction:
sudo PYTHONPATH=/opt/graphite/webapp/ python manage.py migrate --settings=local_settings
Gave information
Operations to perform:
Apply all migrations: (none)
Running migrations:
No migrations to apply.
Then I went to check the graphite.db
sqlite3 graphite.db
SELECT name FROM sqlite_master WHERE type='table';
Only two tables created, django_migrations and sqlite_sequence, no account relevant tables. And inside apache error log, /opt/graphite/storage/log/webapp/error.log, OperationalError: no such talbe: auth_user. It's because of missing those account tables.
Some info:
ubuntu 16.04 LTS
python2.7.11
django 1.9.6
django-tagging 0.4.3
whisper, carbon, graphite 0.9.15
Please who know the reason and how to solve this? Thanks a lot!