memcached calling wrong libevent

When I try to run memcached from shell I get: memcached: error while loading shared libraries: libevent-1.1a.so.1: cannot open shared object file: No such file or directory However, i’ve installed a newer version using yum install libevent. I have also created a .conf file in /etc/ld.so.conf.d/ to say where it is. I have confirmed that … Read more

Nginx , Apache , Mysql , Memcache with server 4G ram. How optimize to enought memory?

i have 1 dedicated server with Nginx proxy for Apache. Memcache, mysql, 4G Ram. These day, my visitor on my site wasn’t increased, but my server get overload always in some specified time. (9AM – 15PM) Ram in use is increased second by second to full. that’s moment, my server will get overload. i have … Read more

Installing Memcached on CentOS 6 Issue

Having a devil of a time getting Memecached on my CentOS 6 server (PHP 5.4.13). Usually all of the DigitalOcean help guides work smoothly (it’s a MediaTemple server and support won’t install memcached), but I’m hung up on the last step installing the PHP extension: https://www.digitalocean.com/community/tutorials/how-to-store-php-sessions-in-memcached-on-a-centos-vps. The last step has me running pecl install -f … Read more

Memcached server with multiple webservers

I’m struggling for days now, I’m setting up my cloud infrastructure: 1 nginx Loadbalancer 2 Centos Webservers 1 Centos Memcached server On the webservers I’ve installed the php-pecl-memcached packages and made the necessary adjustments to php.ini. The webservers connect to the memcached server over a private network: session.save_handler = memcached session.save_path = “10.xx.xx.xx:11211” The webservers … Read more

why memcached server running slow for my case

I am usiing memcached for html caching for my project but it take too much time to retrieving data and responding. Server stats: 8 GB RAM, centos, php client Here is my setting : echo “stats settings” | nc localhost 11211 STAT maxbytes 1073741824 STAT maxconns 1024 STAT tcpport 11211 STAT udpport 11211 STAT inter … Read more

Memcache and Python

I installed Memcache doing this: gunzip memcached-1.2.1.tar.gz tar -xvf memcached-1.2.1.tar cd memcached-1.2.1 ./configure make make install Now, what exactly is the next step? (for Python) I know there are two modules, but my friend wants me to install memcachedb. Do I install that? After I do that, how do I start the service and start … Read more

Forward localhost memcached server on port 12111 to domain.com memcached server

My customers are running many scripts that uses memcached, but all of them are using localhost as a address. My localhost server is now out of RAM, because it’s doing many other things like WWW and MySQL servers. Now I got a brand new server with 16 GB RAM which I can use as a … Read more

Does mysql query cache have to be off to use memcached? [closed]

It’s difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 9 years ago. How do you know if memcached is being … Read more