Solved :: When Couchbase Stopped Accepting Data
My Couchbase server is installed inside a VM with UBUNTU Server, which used to periodically crash but thanks to DP4 which is working fine till now. But observed a issue when my server gets rebooted. Couchbase stops accepting my data any more. When I tried to find Listening port, it was there listening to 11211. So tried to push some data with My PHP code which is written like below :
$m = new Memcached();
$m->addServer('IP_TO_SERVE', 11211);
for($i=0;$i<1000;$i++){$m->add(($temp = uniqid()),'Value '.$i);echo $temp.' :: '.$m->getResultMessage()."<br/>";}
Which resultant : ID :: SUCCESS always without failing a single point.
But the crazy thing was not able to find it inside Couchbase.
So what did I do to solve it? Just stopped memcached server which gets added with system when you install php5-memcached, and restart couchbase-server.
Voila....Couchbase-server started accepting data. I believe Couchbase should let user know if there's any issue with Port. I am not sure if anyone else had this problem.
Enjoy COUCH!!!!
Thanks for letting us know. I agree. We'll file an enhancement request.