← Back to team overview

graphite-dev team mailing list archive

Re: [Question #195886]: Clustered Webapp - Not Communicating

 

Question #195886 on Graphite changed:
https://answers.launchpad.net/graphite/+question/195886

VegHead gave more information on the question:
Believe it or not, settings.py says 0.9.10-pre1. On both instances.

WEBAPP_VERSION = '0.9.10-pre1'

I'm installing everything via a Chef recipe that I wrote, which uses the
python_pip LWRP. And I did just set the server up within the past 2
days. That leaves me really puzzled how I ended up with 0.9.10-pre1... I
triple checked and you're absolutely right, PyPI doesn't have
v0.9.10-pre1. Strangely enough, I also have whisper 0.9.10-pre1 and
carbon 0.9.10-pre1, neither of which are available on PyPI.

Should I try switching to 0.9.9 instead?

Here is the contents of local_settings.py (only the uncommented items)
on cache3.graphite.prod:

---snip---
USE_LDAP_AUTH = True
LDAP_URI = "ldap://ldap.example.ec2:389/";
LDAP_SEARCH_BASE = "ou=People,dc=example,dc=ec2"
LDAP_USER_QUERY = "(uid=%s)"  #For Active Directory use "(sAMAccountName=%s)"

CLUSTER_SERVERS = [ 'cache3.graphite.prod.example.ec2','cache4.graphite.prod.example.ec2' ]
---snip---

And here is the contents of local_settings.py on the other servers,
cache4.graphite.prod:

---snip---
USE_LDAP_AUTH = True
LDAP_URI = "ldap://ldap.example.ec2:389/";
LDAP_SEARCH_BASE = "ou=People,dc=example,dc=ec2"
LDAP_USER_QUERY = "(uid=%s)"  #For Active Directory use "(sAMAccountName=%s)"

CLUSTER_SERVERS = [ 'cache3.graphite.prod.example.ec2','localhost' ]
---snip---

-- 
You received this question notification because you are a member of
graphite-dev, which is an answer contact for Graphite.