Instalo el servidor Memcached a través de la fuente y puedo instalar el script de inicio estándar para 1 instancia del servidor Memcached, pero al probar varios scripts a través de Google, no puedo encontrar uno que funcione para el inicio automático del administrador en el arranque para múltiples instancias del servidor Memcached. Probé ambos scripts y ninguno funciona, el inicio del servicio Memcached simplemente regresa al símbolo del sistema sin que se inicien instancias del servidor Memcached.
- lullabot.com/articles/installing-memcached-redhat-or-centos
- addmoremem.blogspot.com/2010/09/running-multiple-instances-of-memcached.html
Sin embargo, este script bash funciona pero no inicia instancias memcached al inicio.
#!/bin/sh
case "$1" in
start)
/usr/local/bin/memcached -d -m 16 -p 11211 -u nobody
/usr/local/bin/memcached -d -m 16 -p 11212 -u nobody
;;
stop) killall memcached
;;
esac
SO: Centos 5.5 64 bits Memcached = v1.4.5 Memcache = v2.2.5
¿Alguien puede indicarme un script de inicio /etc/init.d/ que funcione para administrar múltiples servidores Memcached? Gracias
editar: Gracias mat, este es el código que terminó funcionando
#!/bin/sh
# chkconfig: - 80 12
# description: The memcached daemon is a network memory cache service.
# processname: memcached
BIN=/usr/local/bin/memcached
USER=nobody
CON=2048
THREADS=4
$BIN -d -m 16 -p 11211 -c $CON -t $THREADS -u $USER
$BIN -d -m 16 -p 11212 -c $CON -t $THREADS -u $USER
case "$1" in
start)
$BIN -d -m 16 -p 11211 -c $CON -t $THREADS -u $USER
$BIN -d -m 16 -p 11212 -c $CON -t $THREADS -u $USER
;;
stop) killall $BIN
;;
esac
Respuesta1
Para agregar un servicio a chkconfig, normalmente necesitarás un par de comentarios especiales debajo del shebang de un script de shell:
#!/bin/sh
# chkconfig: - 55 45
# description: The memcached daemon is a network memory cache service.
# processname: memcached
Después de agregar las líneas a /etc/init.d/memcached, puede emitir
chkconfig --add memcached
Por supuesto, hay niveles de ejecución adicionales en los que un proceso puede comenzar, por lo que debe verificar que emitiría
chkconfig --list | grep "memcached"
Un nivel de ejecución común para Memcached sería
chkconfig --level 345 memcached on
Respuesta2
Este es el script que estoy usando para iniciar varias instancias de Memcached. El punto clave es que uso una matriz asociativa para iniciar todas o solo una instancia específica:
#! /usr/local/bash4/bin/bash
#
# chkconfig: - 55 45
# description: The memcached daemon is a network memory cache service.
# processname: memcached
# config: /etc/sysconfig/memcached
# Standard LSB functions
#. /lib/lsb/init-functions
# Source function library.
. /etc/init.d/functions
if [ -f /etc/sysconfig/memcached ];then
. /etc/sysconfig/memcached
fi
# Check that networking is up.
. /etc/sysconfig/network
if [ "$NETWORKING" = "no" ]
then
exit 0
fi
typeset -A PIDS
typeset -A MEMORYS
typeset -A FACTORS
typeset -A INSTANCES
PORTS="11216 11217"
USER=memcached
basedir="/usr/local/memcached"
MAXCONN=1024
OPTIONS=""
INSTANCES=([11216]="session" [11217]="userdata")
PIDS=([11216]="$basedir/var/run/sohaphimdetails.pid" [11217]="$basedir/var/run/sohamuzik-top.pid")
MEMORYS=([11216]="1024" [11217]="2048")
FACTORS=([11216]="1.25" [11217]="1.125")
RETVAL=0
prog="memcached"
cmd="/usr/local/memcached/bin/memcached"
user="memcached"
ip="192.168.6.66"
peer="192.168.6.28"
max_conn=2048
max_memory=512
threads=8
function start()
{
port="$1"
if [ `ps -ef | grep "$cmd" | grep -c $port` -ge 1 ]; then
action $"Starting the memcached server on port '$port'... " /bin/false
else
if [ ! -f $basedir/var/log/${INSTANCES[$port]}.log ]; then
touch $basedir/var/log/${INSTANCES[$port]}.log
/bin/chown memcached:memcached $basedir/var/log/${INSTANCES[$port]}.log
fi
$cmd -d -u $user -l $ip -c $max_conn -t $threads -m ${MEMORYS[$port]} -p $port -P $basedir/var/run/${INSTANCES[$port]}.pid -f ${FACTORS[$port]} -x $peer -X `expr $port '*' 10` -vv > $basedir/var/log/${INSTANCES[$port]}.log 2>&1
action $"Starting the memcached server on port '$port'... " /bin/true
fi
}
function stop()
{
port="$1"
if [ `ps -ef | grep "$cmd" | grep -c $port` -eq 0 ]; then
action $"Stopping the memcached server on port '$port'... " /bin/false
else
kill -TERM `ps -ef | grep "$cmd" | grep $port | grep -v grep | awk '{ print $2 }'`
action $"Stopping the memcached server on port '$port'... " /bin/true
fi
}
case "$1" in
start)
if [ -n "$2" ]; then
start $2
else
for port in $PORTS; do
start $port
done
fi
;;
stop)
if [ -n "$2" ]; then
port="$2"
stop $port
else
killproc $prog
fi
;;
restart)
if [ -n "$2" ]; then
stop $2
start $2
else
for port in $PORTS; do
stop $port
start $port
done
fi
;;
*)
printf 'Usage: %s {start|stop|restart} <port>\n' "$prog"
exit 1
;;
esac
PD: yo usérepcachedpara replicación.
Respuesta3
Dado que el script está funcionando, supongo que no está vinculado desde /etc/rc.d, por lo que no se ejecuta al inicio. Suponiendo que su script de inicio se llama /etc/init.d/memcached, debe ejecutar
chkconfig --add memcached
para agregarlo a la lista de scripts que se ejecutarán al inicio.