#!/bin/bash # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # chkconfig: 2345 85 15 # description: Summary: ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services. All of these kinds of services are used in some form or another by distributed applications. Each time they are implemented there is a lot of work that goes into fixing the bugs and race conditions that are inevitable. Because of the difficulty of implementing these kinds of services, applications initially usually skimp on them ,which make them brittle in the presence of change and difficult to manage. Even when done correctly, different implementations of these services lead to management complexity when the applications are deployed. # processname: java # pidfile: /var/run/zookeeper/zookeeper-server.pid ### BEGIN INIT INFO # Provides: hadoop-zookeeper-server # Required-Start: $network $local_fs # Required-Stop: # Should-Start: $named # Should-Stop: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services. ### END INIT INFO set -e PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON_SCRIPT="/usr/bin/zookeeper-server" NAME=hadoop-zookeeper-server DESC="ZooKeeper daemon" # FIXME: a workaround for BIGTOP-207 PID_FILE=/var/lib/zookeeper/zookeeper_server.pid install -d -m 0755 -o zookeeper -g zookeeper /var/run/zookeeper/ DODTIME=3 # Checks if the given pid represents a live process. # Returns 0 if the pid is a live process, 1 otherwise hadoop_is_process_alive() { local pid="$1" ps -fp $pid | grep $pid | grep zookeeper > /dev/null 2>&1 } hadoop_check_pidfile() { local pidfile="$1" # IN local pid pid=`cat "$pidfile" 2>/dev/null` if [ "$pid" = '' ]; then # The file probably does not exist or is empty. return 1 fi set -- $pid pid="$1" hadoop_is_process_alive $pid } hadoop_process_kill() { local pid="$1" # IN local signal="$2" # IN local second kill -$signal $pid 2>/dev/null # Wait a bit to see if the dirty job has really been done for second in 0 1 2 3 4 5 6 7 8 9 10; do if hadoop_is_process_alive "$pid"; then # Success return 0 fi sleep 1 done # Timeout return 1 } hadoop_stop_pidfile() { local pidfile="$1" # IN local pid pid=`cat "$pidfile" 2>/dev/null` if [ "$pid" = '' ]; then # The file probably does not exist or is empty. Success return 0 fi set -- $pid pid="$1" # First try the easy way if hadoop_process_kill "$pid" 15; then return 0 fi # Otherwise try the hard way if hadoop_process_kill "$pid" 9; then return 0 fi return 1 } start() { # FIXME: nohup is a workaround for BIGTOP-205 su -s /bin/sh zookeeper -c "nohup ${DAEMON_SCRIPT} start >/dev/null 2>&1 &2 echo "Usage: $N {start|stop|restart|force-reload|status|force-stop}" >&2 exit 1 ;; esac exit 0