Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I am running into an error at this point from a fresh CentOS 7 install…
Initialize a new database:
cd /opt/graphite sudo PYTHONPATH=/opt/graphite/webapp/ django-admin.py syncdb --settings=graphite.settings
I am getting this output: Unknown command: ‘syncdb’ Type ‘django-admin.py help’ for usage.
When I type ‘django-admin.py help’:
Type ‘django-admin.py help <subcommand>’ for help on a specific subcommand.
Available subcommands:
[django] check compilemessages createcachetable dbshell diffsettings dumpdata flush inspectdb loaddata makemessages makemigrations migrate runserver sendtestemail shell showmigrations sqlflush sqlmigrate sqlsequencereset squashmigrations startapp startproject test testserver Note that only Django core commands are listed as settings are not properly configured (error: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.).
Any idea what the issue may be? I followed every step exactly like they are listed. Thanks!
For all with the same problem like socalal: With Django 1.9 there were things changed internally in Django.
As new command which I found in the Graphite Bugs, i ran this one: PYTHONPATH=/opt/graphite/webapp django-admin.py migrate --settings=graphite.settings --run-syncdb
Github Issue: https://github.com/graphite-project/graphite-web/issues/1425
I am facing issue with below command
PYTHONPATH=/opt/graphite/webapp/ django-admin.py syncdb --settings=graphite.settings
As suggested by TheBigfoot I am use need command as below
PYTHONPATH=/opt/graphite/webapp django-admin.py migrate --settings=graphite.settings --run-syncdb
But above command not creating database to login graphite dashboard. If I downgrade Django then I am getting Internal error when I access graphite link. Please advise.
Hi Guys,
I have configured Graphite on Centos 7 and it’s working as expected. Now it’s running on non-ssl port (8080) I want to enable SSL configuration for the same. How do we enable SSL for Graphite? Can you please let me know… Thanks in advance !!
I am running to an error at this point that I cant seem to figure out root@localhost:/opt/graphite$ PYTHONPATH=/opt/graphite/webapp django-admin.py migrate --settings=graphite.settings --run-syncdb Traceback (most recent call last): File “/bin/django-admin.py”, line 5, in <module> management.execute_from_command_line() File “/usr/lib/python2.7/site-packages/django/core/management/init.py”, line 353, in execute_from_command_line utility.execute() File “/usr/lib/python2.7/site-packages/django/core/management/init.py”, line 302, in execute settings.INSTALLED_APPS File “/usr/lib/python2.7/site-packages/django/conf/init.py”, line 55, in getattr self._setup(name) File “/usr/lib/python2.7/site-packages/django/conf/init.py”, line 43, in _setup self._wrapped = Settings(settings_module) File “/usr/lib/python2.7/site-packages/django/conf/init.py”, line 99, in init mod = importlib.import_module(self.SETTINGS_MODULE) File “/usr/lib64/python2.7/importlib/init.py”, line 37, in import_module import(name) File “/opt/graphite/webapp/graphite/settings.py”, line 153, in <module> from graphite.local_settings import * # noqa File “/opt/graphite/webapp/graphite/local_settings.py”, line 14, in <module> SECRET_KEY = test NameError: name ‘test’ is not defined
Any idea what could causing this?