Hi
i have two servers (A for remote en B for ressources with mysql and memcached, on centos 7.x with aapanel)
i have install memcached, launch service, open port but when i try memcached on server A it doesn't work
Have you an idea?
Some informations about config
memcached config
IP=0.0.0.0
PORT=11211
USER=memcached
MAXCONN=1024
CACHESIZE=256
OPTIONS="
firewall
Accept port:[11211] Listening 2022-08-11 13:03:31 Memcached service port
page test in PHP with extenion installed
$mc = new Memcached();
$mc->addServer('<IP>', 11211);
$mc->set('test', 'value');
$test = $mc->get('test');
echo "value memcached : ".$test."</br>";