blob: 1fd8581d8049be4e9489390a51d90939c50361a4 [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.
if [[ -z $1 ]]; then
echo "Invalid argument [$1];"
echo "Usage: Only start | stop | restart | version, are supported."
exit;
fi
action=$1
action=`echo $action | tr '[:lower:]' '[:upper:]'`
realScriptPath=`readlink -f $0`
realScriptDir=`dirname $realScriptPath`
cd $realScriptDir
cdir=`pwd`
ranger_usersync_max_heap_size=1g
for custom_env_script in `find ${cdir}/conf/ -name "ranger-usersync-env*"`; do
if [ -f $custom_env_script ]; then
. $custom_env_script
fi
done
if [ -z "${USERSYNC_PID_DIR_PATH}" ]; then
USERSYNC_PID_DIR_PATH=/var/run/ranger
fi
pidf=${USERSYNC_PID_DIR_PATH}/usersync.pid
if [ -z "${UNIX_USERSYNC_USER}" ]; then
UNIX_USERSYNC_USER=ranger
fi
JAVA_OPTS=" ${JAVA_OPTS} -XX:MetaspaceSize=100m -XX:MaxMetaspaceSize=200m -Xmx${ranger_usersync_max_heap_size} -Xms1g "
if [ "${action}" == "START" ]; then
#Export JAVA_HOME
if [ -f ${cdir}/conf/java_home.sh ]; then
. ${cdir}/conf/java_home.sh
fi
if [ "$JAVA_HOME" != "" ]; then
export PATH=$JAVA_HOME/bin:$PATH
fi
cp="${cdir}/dist/*:${cdir}/lib/*:${cdir}/conf:${RANGER_USERSYNC_HADOOP_CONF_DIR}/*"
cd ${cdir}
umask 0077
if [ -z "${logdir}" ]; then
logdir=${cdir}/logs
fi
if [ -f "$pidf" ] ; then
pid=`cat $pidf`
if ps -p $pid > /dev/null
then
echo "Apache Ranger Usersync Service is already running [pid={$pid}]"
exit ;
else
rm -rf $pidf
fi
fi
SLEEP_TIME_AFTER_START=5
nohup java -Dproc_rangerusersync -Dlog4j.configuration=file:/etc/ranger/usersync/conf/log4j.properties ${JAVA_OPTS} -Dlogdir="${logdir}" -cp "${cp}" org.apache.ranger.authentication.UnixAuthenticationService -enableUnixAuth > ${logdir}/auth.log 2>&1 &
VALUE_OF_PID=$!
echo "Starting Apache Ranger Usersync Service"
sleep $SLEEP_TIME_AFTER_START
if ps -p $VALUE_OF_PID > /dev/null
then
echo $VALUE_OF_PID > ${pidf}
chown ${UNIX_USERSYNC_USER} ${pidf}
chmod 660 ${pidf}
pid=`cat $pidf`
echo "Apache Ranger Usersync Service with pid ${pid} has started."
else
echo "Apache Ranger Usersync Service failed to start!"
fi
exit;
elif [ "${action}" == "STOP" ]; then
WAIT_TIME_FOR_SHUTDOWN=2
NR_ITER_FOR_SHUTDOWN_CHECK=15
if [ -f $pidf ]; then
pid=`cat $pidf` > /dev/null 2>&1
kill -9 $pid > /dev/null 2>&1
sleep 1 #Give kill -9 sometime to "kill"
if ps -p $pid > /dev/null; then
echo "Wow, even kill -9 failed, giving up! Sorry.."
else
rm -f $pidf
echo "Apache Ranger Usersync Service [pid = ${pid}] has been stopped."
fi
else
echo "Apache Ranger Usersync Service not running"
fi
exit;
elif [ "${action}" == "RESTART" ]; then
echo "Restarting Apache Ranger Usersync"
${cdir}/ranger-usersync-services.sh stop
${cdir}/ranger-usersync-services.sh start
exit;
elif [ "${action}" == "VERSION" ]; then
cd ${cdir}/lib
java -cp ranger-util-*.jar org.apache.ranger.common.RangerVersionInfo
exit
else
echo "Invalid argument [$1];"
echo "Usage: Only start | stop | restart | version, are supported."
exit;
fi