blob: 4b3d4d483bc67b03d883d3bd26b38104f246e0d1 [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`
pidf=/var/run/ranger/usersync.pid
if [ "${action}" == "START" ]; then
#Export JAVA_HOME
if [ -f ${cdir}/conf/java_home.sh ]; then
. ${cdir}/conf/java_home.sh
fi
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 [ "$JAVA_HOME" != "" ]; then
export PATH=$JAVA_HOME/bin:$PATH
fi
logdir=/var/log/ranger/usersync
cp="${cdir}/dist/*:${cdir}/lib/*:${cdir}/conf"
if [ -f $pidf ]; then
PID=`cat $pidf`
if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
rm -f ${pidf}
else
kill -9 ${PID} > /dev/null 2>&1
rm -f ${pidf}
echo "Ranger Usersync Service [pid = ${PID}] has been stopped."
fi
fi
cd ${cdir}
umask 0077
nohup java -Dproc_rangerusersync -Dlog4j.configuration=file:/etc/ranger/usersync/conf/log4j.xml ${JAVA_OPTS} -Dlogdir="${logdir}" -cp "${cp}" org.apache.ranger.authentication.UnixAuthenticationService -enableUnixAuth > ${logdir}/auth.log 2>&1 &
echo $! > ${pidf}
chown ranger ${pidf}
sleep 5
pid=`cat $pidf`
if [ "${pid}" != "" ]
then
echo "Ranger Usersync Service has started successfully."
else
echo "Ranger Usersync Service failed to start. Please refer to log files under ${logdir} for further details."
fi
exit;
elif [ "${action}" == "STOP" ]; then
if [ -f $pidf ]; then
pidf=/var/run/ranger/usersync.pid
PID=`cat $pidf` > /dev/null 2>&1
kill -9 $PID > /dev/null 2>&1
rm -f $pidf
echo "Ranger Usersync Service [pid = ${PID}] has been stopped."
else
echo "Ranger Usersync Service not running"
fi
exit;
elif [ "${action}" == "RESTART" ]; then
echo "Stopping Ranger Usersync"
${cdir}/ranger-usersync-services.sh stop
echo "Starting Apache Ranger Usersync"
${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