fjptec-xm 发表于 2018-11-4 07:52:17

Redis启动脚本,开机自动启动

  # chkconfig:   2345 90 10
  # description:Redis is a persistent key-value database
  PATH=$PATH:/usr/local/redis/bin:/sbin:/usr/bin:/bin
  REDISPORT=6379
  EXEC=/usr/local/redis/bin/redis-server
  REDIS_CLI=/usr/local/redis/bin/redis-cli
  PASS=chbin123
  PIDFILE=/var/run/redis_6379.pid
  CONF="/usr/local/redis/etc/redis.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
  if [ "$?"="0" ]
  then
  echo "Redis is running..."
  fi
  ;;
  stop)
  if [ ! -f $PIDFILE ]
  then
  echo "$PIDFILE does not exist, process is not running"
  else
  PID=$(cat $PIDFILE)
  echo "Stopping ..."
  $REDIS_CLI -a $PASS -p $REDISPORT SHUTDOWN
  while [ -x ${PIDFILE} ]
  do
  echo "Waiting for Redis to shutdown ..."
  sleep 1
  done
  echo "Redis stopped"
  fi
  ;;
  restart|force-reload)
  ${0} stop
  ${0} start
  ;;
  *)
  echo "Usage: /etc/init.d/redis {start|stop|restart|force-reload}" >&2
  exit 1
  esac
  -----------------------------
  添加redis服务开机启动:
  chmod +x /etc/init.d/redis
  启动redis服务:
  service redis start
  检查服务是否启动
  ps -ef | grep redis
  netstat -anptu | grep 6379

页: [1]
查看完整版本: Redis启动脚本,开机自动启动