nginx开启关闭shell

#!/bin/sh
#file: /usr/local/bin/sphinx
. /etc/rc.d/init.d/functions

appName="Sphinx"

stop(){
/usr/local/bin/searchd -c /usr/local/coreseek/etc/sphinx.conf --stop > /dev/null 2>&1
ret=$?
if [ $ret -eq 0 ]; then
action $"Stoping $appName: " /bin/true
else
action $"Stoping $appName: " /bin/false
fi
return $ret
}

start(){
/usr/local/bin/searchd -c /usr/local/coreseek/etc/sphinx.conf > /dev/null 2>&1
ret=$?
if [ $ret -eq 0 ]; then
action $"Starting $appName: " /bin/true
else
action $"Starting $appName: " /bin/false
fi
return $ret
}

indexer(){
/usr/local/bin/indexer -c /usr/local/coreseek/etc/sphinx.conf --all > /dev/null 2>&1
ret=$?
if [ $ret -eq 0 ]; then
action $"$appName making index: " /bin/true
else
action $"$appName making index: " /bin/false
fi
return $ret
}


case $1 in
restart)
stop
indexer
start
;;

stop)
stop
;;

start)
start
;;
esac

exit 0

原文地址:https://www.cnblogs.com/zuikeol/p/6800456.html