carbon-cache will not start

Asked by ian springett

new installation on Centos7, carbon-cache fails to start (running as root):

 /opt/graphite/bin/carbon-cache.py start
Traceback (most recent call last):
  File "/opt/graphite/bin/carbon-cache.py", line 32, in <module>
    run_twistd_plugin(__file__)
  File "/opt/graphite/lib/carbon/util.py", line 63, in run_twistd_plugin
    from carbon.conf import get_parser
  File "/opt/graphite/lib/carbon/conf.py", line 30, in <module>
    from carbon.database import TimeSeriesDatabase
  File "/opt/graphite/lib/carbon/database.py", line 21, in <module>
    from six import with_metaclass
ImportError: No module named six

Question information

Language:
English Edit question
Status:
Solved
For:
Graphite Edit question
Assignee:
No assignee Edit question
Solved by:
Piotr Popieluch
Solved:
Last query:
Last reply:
Revision history for this message
Best Piotr Popieluch (piotr1212) said :
#1

You need to install the Python six module. eg. yum install python-six or pip install six

Revision history for this message
ian springett (jemiss) said :
#2

many thanks, as simple as that!