Centos 간의 Memcached 연결 끊김 문제

Centos 간의 Memcached 연결 끊김 문제

nginx로 로드 밸런싱을 실행하는 애플리케이션 서버가 있습니다. 이 시간 동안 내 memcached가 충돌했습니다.

아래는 내 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

시작 파일

  #!/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

다음은 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

전문가님, 도와주세요. 지난주부터 이 문제가 계속 발생하여 모든 방법을 시도했지만 여전히 결과가 나오지 않습니다.

답변1

구성 파일은 memcache.conf시작 파일에서 참조하는 소스 설명일 뿐입니다 memcached.cnf.

관련 정보