Я пытаюсь настроить memcached сервер с PHPFox. У меня уже есть два VPS, которые запускают memcached (если только эти два указаны в конфигурации PHPFox, предупреждения нет). Я хочу добавить еще один (давайте назовем это third
).
Хотя конфиги одинаковы (я скопировал конфигурацию memcached из первого VPS в новый на одну треть), PHPFox показывает десятки предупреждений, таких как:
User Warning: Unable to find the phrase: base.name - include/library/phpfox/error/error.class.php (95)
Я понятия не имею, что может быть не так.
PHPFox подключается к третьему VPS, но не может получить значения.
Если memcached отключен, появляется сообщение вроде Can't connect to memcached server
, Нет такого сообщения, поэтому PHPFox должен быть подключен к memcached.
Вот пример конфигурации, который я использую:
# 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
# memory
-m 1024
# 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 nobody
# 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 x.x.x.x # productive server IP (PHPFox)
# Limit the number of simultaneous incoming connections. The daemon default is 1024
-c 10240
Кто-нибудь может мне помочь? Буду признателен.
РЕДАКТИРОВАТЬ:
Я могу подключиться к thirdVpsIP:11211
с помощью Telnet и выполнить команды. Поэтому я думаю, что memcached настроен правильно.
Задача ещё не решена.
Других решений пока нет …