我的/etc/init.d/redis
脚本可以正常启动或者停止redis服务
service redis start
service redis stop
service redis restart
我也设置了/etc/init.d/redis
权限为755
也设置了开机启动chkconfig redis on
chkconfig --list
如下:
redis 0:关 1:关 2:开 3:开 4:开 5:开 6:关
请问为什么不能开机启动呢?求解决办法
附:/etc/init.d/redis
代码如下:
# chkconfig: 2345 10 90
#!/bin/sh
#
# Simple Redis init.d script conceived to work on Linux systems
# as it does use of the /proc filesystem.
REDISPORT=6379
EXEC=/usr/local/bin/redis-server
CLIEXEC=/usr/local/bin/redis-cli
PIDFILE=/var/run/redis_${REDISPORT}.pid
CONF="/usr/local/redis/redis.conf"
AUTH="111111"
# CONF="/etc/redis/${REDISPORT}.conf"
case "$1" in
start)
if [ -f $PIDFILE ]
then
echo "$PIDFILE exists, process is already running or crashed"
else
echo "Starting Redis server..."
$EXEC $CONF
fi
;;
stop)
if [ ! -f $PIDFILE ]
then
echo "$PIDFILE does not exist, process is not running"
else
PID=$(cat $PIDFILE)
echo "Stopping ..."
$CLIEXEC -p $REDISPORT -a $AUTH shutdown
while [ -x /proc/${PID} ]
do
echo "Waiting for Redis to shutdown ..."
sleep 1
done
echo "Redis stopped"
fi
;;
restart|force-reload)
${0} stop
${0} start
;;
*)
echo "Please use start or stop as first argument"
;;
esac
php-fpm에서 제공하는 시작 파일을 참고해서 이 문장을 추가해서 완료했습니다.
으아아아로그를 보면 오류일 수도 있습니다
그래도 작동하지 않으면
/etc/rc.local
의exit
앞에sudo service redis-server start
을 추가하세요.