blob: 713a4059ee248281d89b9ce09e579f39fd577b4e [file] [log] [blame]
#!/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 80 20
# 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: 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
# Autodetect JAVA_HOME if not defined
. /usr/lib/bigtop-utils/bigtop-detect-javahome
. /etc/default/zookeeper
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON_SCRIPT="/usr/bin/zookeeper-server"
NAME=zookeeper-server
DESC="ZooKeeper daemon"
PID_FILE=/var/run/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() {
su -s /bin/bash zookeeper -c "${DAEMON_SCRIPT} start"
}
stop() {
if hadoop_check_pidfile $PID_FILE ; then
su -s /bin/bash zookeeper -c "${DAEMON_SCRIPT} stop"
fi
}
case "$1" in
start)
start
;;
stop)
stop
;;
force-stop)
echo -n "Forcefully stopping $DESC: "
hadoop_stop_pidfile $PID_FILE
if hadoop_check_pidfile $PID_FILE ; then
echo "$NAME."
else
echo " ERROR."
fi
;;
force-reload|condrestart|try-restart)
# check wether $DAEMON is running. If so, restart
hadoop_check_pidfile $PID_FILE && $0 restart
;;
restart|reload)
echo -n "Restarting $DESC: "
stop
[ -n "$DODTIME" ] && sleep $DODTIME
$0 start
;;
status)
echo -n "$NAME is "
if hadoop_check_pidfile $PID_FILE ; then
echo "running"
else
echo "not running."
exit 1
fi
;;
init)
if hadoop_check_pidfile $PID_FILE ; then
echo "Error: $DESC is running. Stop it first." >&2
exit 1
else
shift
su -s /bin/bash zookeeper -c "zookeeper-server-initialize $*"
fi
;;
*)
N=/etc/init.d/$NAME
# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
echo "Usage: $N {start|stop|restart|force-reload|status|force-stop|condrestart|try-restart|init}" >&2
exit 1
;;
esac
exit 0