OS / 디스트로에 대해 알려주지 않았습니다. 또한 memcached 설치 방법을 알려주지 않았습니다.
일반적으로 debian 기반 시스템 또는 redhat, fedora 또는 centos 에서 /etc/
memcached를 설치할 때 샘플 구성 파일이 제공 됩니다 .apt-get
rpm
yum
소스에서 설치 한 경우 샘플 파일을 얻지 못할 수 있습니다 /etc/
(소스에서 memcached를 설치하지 않았습니다). 그러나 압축을 푼 소스 폴더에서 샘플 구성 파일을 찾을 수 있습니다.
어쨌든, 당신은 locate memcached.conf
당신의 시스템에서 하나를 찾을 수 있습니다 . sudo updatedb
검색 캐시를 업데이트하려면 그 전에 수행해야 합니다.
내 시스템의 구성 파일은 다음과 같습니다. 당신은 그것을 사용할 수 있습니다 :
# Run memcached as a daemon. This command is implied, and is not needed for the
# daemon to run. See the README.Debian that comes with this package for more
# information.
-d
# Log memcached's output to /var/log/memcached
logfile /var/log/memcached.log
# Be verbose
# -v
# Be even more verbose (print client commands as well)
# -vv
# Start with a cap of 64 megs of memory. It's reasonable, and the daemon default
# Note that the daemon will grow to this size, but does not start out holding this much
# memory
-m 64
# Default connection port is 11211
-p 11211
# Run the daemon as root. The start-memcached will default to running as root if no
# -u command is present in this config file
-u memcache
# Specify which IP address to listen on. The default is to listen on all IP addresses
# This parameter is one of the only security measures that memcached has, so make sure
# it's listening on a firewalled interface.
-l 127.0.0.1
# Limit the number of simultaneous incoming connections. The daemon default is 1024
# -c 1024
# Lock down all paged memory. Consult with the README and homepage before you do this
# -k
# Return error when memory is exhausted (rather than removing items)
-M
# Maximize core file limit
# -r
명령 행에서 동일한 옵션을 전달할 수도 있습니다.
-l
옵션은 어떤 호스트가 제공 될지가 아니라 memcached가 수신 할 인터페이스를 조정합니다 .