That gave me insight to a āniceā error log:
Traceback (most recent call last):
File "/opt/graphite/webapp/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/opt/graphite/webapp/django/db/backends/sqlite3/base.py", line 383, in execute
return Database.Cursor.execute(self, query, params)
sqlite3.OperationalError: no such table: auth_user
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/opt/graphite/webapp/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)
File "/opt/graphite/webapp/django/core/handlers/base.py", line 115, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/opt/graphite/webapp/django/core/handlers/base.py", line 113, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/opt/graphite/webapp/graphite/composer/views.py", line 27, in composer
profile = getProfile(request)
File "/opt/graphite/webapp/graphite/user_util.py", line 35, in getProfile
return default_profile()
File "/opt/graphite/webapp/graphite/user_util.py", line 51, in default_profile
'password': '!'})
File "/opt/graphite/webapp/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/opt/graphite/webapp/django/db/models/query.py", line 538, in get_or_create
return self.get(**kwargs), False
File "/opt/graphite/webapp/django/db/models/query.py", line 402, in get
num = len(clone)
File "/opt/graphite/webapp/django/db/models/query.py", line 256, in __len__
self._fetch_all()
File "/opt/graphite/webapp/django/db/models/query.py", line 1242, in _fetch_all
self._result_cache = list(self._iterable_class(self))
File "/opt/graphite/webapp/django/db/models/query.py", line 55, in __iter__
results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
File "/opt/graphite/webapp/django/db/models/sql/compiler.py", line 1133, in execute_sql
cursor.execute(sql, params)
File "/opt/graphite/webapp/django/db/backends/utils.py", line 67, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/opt/graphite/webapp/django/db/backends/utils.py", line 76, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/opt/graphite/webapp/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/opt/graphite/webapp/django/db/utils.py", line 89, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/opt/graphite/webapp/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/opt/graphite/webapp/django/db/backends/sqlite3/base.py", line 383, in execute
return Database.Cursor.execute(self, query, params)
django.db.utils.OperationalError: no such table: auth_user
Seems like something didnāt work when creating the db, I think I saw this some time ago when I stated playing around with graphite.
Rerunning
removes the error and displays the graphite web header:
But I donāt think this has anything to do with the tag filesā¦