Questions tagged [memcached]
The memcached tag has no summary.
12 questions
1 vote
4 answers
2k views
Install memcache for Wordpress on debian with php-fpm
The install instructions for memcache are not really up-to date. How do I install on Debian using php-fpm and nginx? I tried this: apt install memcache zlib1g-dev php-dev pecl install memcache This ...
0 votes
1 answer
1k views
unmet dependencies: php-memcached : Depends: phpapi-20190902
I'm trying to install php-memcached (with php8.1) but have the following error: # apt install php-memcached Reading package lists... Done Building dependency tree... Done Reading state information... ...
1 vote
0 answers
68 views
installing memcached in debian with lemp 7 jetware
im trying to install memcached with the following command : curl -L https://jetware.io/appliances/jetware/memcached14-170503/file/installer:nub_tgz/setup | sh I get this error : ERROR Destination ...
0 votes
1 answer
1k views
cached memory and free command
I have a 2 cpu server running SLES 11.4 x86-64 and it has 1.5 tb of RAM. >free -g total used free shared buffers cached Mem: 1514 284 ...
0 votes
1 answer
666 views
Disable memcached TCP and UDP?
In memcached.conf I have: # -l 127.0.0.1 # -p 11211 My intent is disabling any TCP or UDP binding, as I don't use the service through anything other than unix sockets. Is this configuration ...
1 vote
1 answer
1k views
How to configure systemd so that PHP can use memcached unix socket?
I'm in the process of upgrading from Ubuntu Server 16.04 to 18.04 and at the same time upgrading from PHP 5.6 to PHP 7. In /etc/memcached.conf I added: -s /tmp/memcached.sock -a 666 When I restart ...
2 votes
0 answers
2k views
memcached systemd service stop timeout
I'm using Arch Linux and I noticed that since I installed memcached the system takes much longer to shut down, I checked and verified that this service was indeed the one which was causing it, because ...
1 vote
1 answer
2k views
Send UDP Packet to Memcached via Netcat
I am attempting to send the stats command to memcached via netcat, however, I am not getting anything back from memcached... I have tried echo "stats" > commands.txt nc -u 127.0.0.1 11211 < ...
0 votes
1 answer
1k views
How to install Zend Opcache and Memcached on centOS 7 with PHP7
I upgraded php7 but when I install yum install php-opcache and php-memcache, occurs error Error: php70u-common conflicts with php-common-5.6.31-1.el7.remi.x86_64 You could try using --skip-broken ...
0 votes
1 answer
323 views
high load average on KVM VM web servers
I have a server with KVM libvirt and OVS. Debian 8.6. I am currently running 2 web servers with installed nginx+php5-fpm on VM . HAProxy is used to balance requests and installed on KVM virtual ...
0 votes
1 answer
494 views
Memcached Issue connection lost in between Centos
I have a application server on with I m running load balance with nginx.. my memcached is getting crashed in between. below is my memcache.conf file. # memcached.conf port=11211 pidpath=/apps/home/...
1 vote
2 answers
3k views
What is the difference between using varnish and caching content in memcached?
Do we need to deploy varnish if our Web application is using memcached or do we need memcached if we are using varnish to cache web contents. Can someone recommend some scenarios where should we use ...