Re: memcached failing with unix socket

2014-02-13 Thread Greg
Ah, awesome, that worked! I also ran 'apt-get install python-memcached' (in the hopes of override django's outdated version), and then changed the setting to: memcached://unix:/tmp/memcached.sock That seems to have fixed it. Thanks for your help with this problem. Now the only thing

memcached failing with unix socket

2014-02-12 Thread Greg
I first setup my site to use files as caching, but then the docs convinced me to change to memcached. I set the value for memcaches location to: unix:/tmp/memcached.sock It saved, and the site continued to work for a while (including the admin area), but all of a sudden it stopped

Re: memcached failing with unix socket

2014-02-12 Thread Christian Hammond
Hi Greg, Review Board expects the usage of an address:port. This will generally be localhost:11211. It's a bug that the socket doesn't work (and should probably be filed), but the address:port is the more typical way of configuring memcached anyway, so it's still a better bet. Christian --

Re: memcached failing with unix socket

2014-02-12 Thread Greg
OK... well, in that case I'll need to change the setting anyway. How can I change it if it crashes every time I try to? Also, for now I'll probably stick to using files, so it'd be greatly appreciated if you could explain (or point me to an explanation), of how I can change this setting (for

Re: memcached failing with unix socket

2014-02-12 Thread Christian Hammond
I'd expect that you'd still be able to reach the General Settings page at http://server/admin/settings/general/. Does that also result in an error page? If it does work, you can switch to file-based caching or change the memcached address from there. Christian -- Christian Hammond -