memcached -p <port>
etc/config-local.pl
#@MEMCACHE_SERVERS = ('hostname:port');
@MEMCACHE_SERVERS = ('127.0.0.1:<port>');
If you are unable to use this captcha for any reason, please contact us by email at support@dreamwidth.org
Other options:
no subject
* Let me or Fu (depending on whose box you're on) know, first, so you can be assigned a port that you can use for memcached.
* You'll then want to run memcached in a screen session, as it runs in the foreground. The command you want to run in screen is:
memcached -p <port>where <port> is the port number you were given.
* Finally, you'll want to edit your
etc/config-local.plfile. Look for this line:#@MEMCACHE_SERVERS = ('hostname:port');and change it to:
@MEMCACHE_SERVERS = ('127.0.0.1:<port>');again replacing <port> with the appropriate port number. (Make sure also that the line is uncommented by removing the # at the front.)
This, I think, should be all that's needed.