Comment 10 for bug 812279

Revision history for this message
Kuba Berlinski (berlinski-jakub) wrote :

I have the same problem with v. 599.

 I use Centos 6.0 image thoughtpolice:
http://www.thoughtpolice.co.uk/vmware/#centos6.0

I install python (2.6.5) and other required items:
********************************
dhclient eth0
yum install -y python bzr pycairo wget unzip
mkdir -p /tmp/graphite_install
cd /tmp/graphite_install
wget http://www.djangoproject.com/download/1.3.1/tarball/
wget http://django-tagging.googlecode.com/files/django-tagging-0.3.1.zip
tar -zxvf Django-1.3.1.tar.gz
cd Django-1.3.1
python setup.py install
cd ..
unzip django-tagging-0.3.1.zip
cd django-tagging-0.3.1/
python setup.py install
cd ..
********************************

... then i get the latest revision (599) from bazar:

********************************
bzr branch lp:graphite
pushd graphite/whisper
python setup.py install
popd
pushd graphite/carbon
python setup.py install
popd
pushd graphite
python setup.py install
popd
********************************

I try to configure and run the application:

********************************
pushd /opt/graphite/conf
cp carbon.conf.example carbon.conf
cp storage-schemas.conf.example storage-schemas.conf
popd
cd /opt/graphite/webapp/graphite
python manage.py syncdb
cp local_settings.py.example local_settings.py
cd /opt/graphite/
./bin/carbon-cache.py start
********************************

... and I get the same error message:

[root@localhost graphite]# ./bin/carbon-cache.py start
Traceback (most recent call last):
  File "./bin/carbon-cache.py", line 28, in <module>
    from carbon.util import run_twistd_plugin
  File "/opt/graphite/lib/carbon/util.py", line 17, in <module>
    from twisted.python.util import initgroups
ImportError: No module named twisted.python.util

What am I missing?