I'm trying to use memcached store PHP session information, but PHP keeps telling me it can't connect:
Warning: session_start(): open(memcached:11211/sess_hitr4obt9ofmmsvk9kfl8euqt6, O_RDWR) failed: No such file or directory (2)
Next, I tried telnetting into memcached from the server it's running on by doing: memcached -l 127.0.0.1 -p 12345 -vv
After that, I connected using: telnet localhost 12345
However, that just causes telnet to hang on
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Meanwhile, the server output just sits at: <28 new auto-negotiating client connection
I've left it running for quite some time, and so far nothing has ever happened (no timeout, no connection).
Am I missing something here?