[open-ils-commits] r18080 - branches/rel_2_0/Open-ILS/examples (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Sep 28 12:40:56 EDT 2010


Author: dbs
Date: 2010-09-28 12:40:53 -0400 (Tue, 28 Sep 2010)
New Revision: 18080

Modified:
   branches/rel_2_0/Open-ILS/examples/opensrf.xml.example
Log:
Change memcached default location to 127.0.0.1 from localhost

Debian Squeeze currently doesn't fare well with memcached servers pointing to 
localhost and needs an explicit 127.0.0.1, whereas Ubuntu Lucid is happy with
either. Changing the default here means one less possible gotcha in the out
of the box install & configure experience for Debian Squeeze folk.


Modified: branches/rel_2_0/Open-ILS/examples/opensrf.xml.example
===================================================================
--- branches/rel_2_0/Open-ILS/examples/opensrf.xml.example	2010-09-28 16:40:02 UTC (rev 18079)
+++ branches/rel_2_0/Open-ILS/examples/opensrf.xml.example	2010-09-28 16:40:53 UTC (rev 18080)
@@ -326,14 +326,14 @@
             <!-- memcache servers -->
             <global>
                 <servers>
-                    <server>localhost:11211</server>
+                    <server>127.0.0.1:11211</server>
                 </servers>
                 <max_cache_time>86400</max_cache_time>
             </global>
             <anon>
                 <!-- anonymous cache.  currently, primarily used for web session caching -->
                 <servers>
-                    <server>localhost:11211</server>
+                    <server>127.0.0.1:11211</server>
                 </servers>
                 <max_cache_time>1800</max_cache_time>
                 <!-- maximum size of a single cache entry / default = 100k-->



More information about the open-ils-commits mailing list