Conexão de problema do Memcached perdida entre Centos

0

Eu tenho um servidor de aplicativos com estou executando o balanceamento de carga com nginx .. meu memcached está ficando entre no meio.

abaixo é o meu arquivo memcache.conf .

 # memcached.conf

port=11211
pidpath=/apps/home/memcached/bin/memcache_process.pid
user=root
maxconn=1024
cachesize=4096
options=20
logfile=/apps/home/memcached/logs/memcached.log

arquivo de inicialização

  #!/bin/bash
echo "Memcached is starting"
MPATH='dirname "$0"'
cd $MPATH
. ../../conf/memcached.cnf
$MPATH/memcached -d -p $port -u $user  -m $cachesize -c $maxconn -P $pidpath -d $options -vv > $logfile 2>&1

abaixo está o arquivo de log do memcached

<584 version
584 VERSION 1.4.15
<617 new auto-negotiating client connection
614: Client using the ascii protocol
<614 version
614 VERSION 1.4.15
<616 new auto-negotiating client connection
<618 new auto-negotiating client connection
<619 new auto-negotiating client connection
<620 new auto-negotiating client connection
<621 new auto-negotiating client connection
<622 new auto-negotiating client connection
<626 new auto-negotiating client connection
<624 new auto-negotiating client connection
<628 new auto-negotiating client connection
<623 new auto-negotiating client connection
<627 new auto-negotiating client connection
<625 new auto-negotiating client connection
<629 new auto-negotiating client connection
<630 new auto-negotiating client connection
<631 new auto-negotiating client connection
631: Client using the ascii protocol

ajude-me especialistas presos nele desde a última semana, tentei todas as coisas ainda não conseguindo nada ..

    
por Vinood NK Maheshwari 04.07.2016 / 16:33

1 resposta

0

Seu arquivo de configuração é memcache.conf , mas sua instrução de origem no arquivo de inicialização faz referência a memcached.cnf .

    
por 13.07.2016 / 15:47