redis的啓動腳本

#!/bin/sh #user wyyue #date 2018-12-02 #version redis:4.0.11 V1 . /etc/init.d/functions port=6380 ipaddr=10.0.0.98 server=/usr/local/redis6380/redis-server conf=/usr/local/redis6380/redis.conf custom=/usr/local/redis-4.0.11/src/redis-cli pidfile=/var/run/redis_6380.pid public(){ while [ -x /proc/$pid ] do echo "redis is stopping..." sleep 1 done action "redis stopped" /bin/true } start_redis(){ if [ -f $pidfile ];then action "redis is already running" /bin/true else $server $conf if [ $? -eq 0 ];then action "redis start success" /bin/true else action "redis start fail" /bin/false fi fi } stop_redis(){ if [ ! -f $pidfile ];then action "redis is already stoped" /bin/true else pid=$(cat $pidfile)//獲得proc下對應的值pid passwd=`grep 'requirepass' /usr/local/redis6380/redis.conf|awk '{print $2}'|sed 's#"##g'` //獲取requirepass的值即密碼 if [ -z $passwd ];then $custom -h $ipaddr -p $port shutdown //沒有密碼 public else $custom -h $ipaddr -p $port -a $passwd shutdown //有密碼要授權 public fi fi } status_redis(){ if [ -f $pidfile ];then action "redis is running " /bin/true else action "redis is stopped" /bin/false fi } restart_redis(){ stop_redis sleep 3 start_redis } case "$1" in start) start_redis ;; stop) stop_redis ;; restart) restart_redis ;; status) status_redis ;; *) echo "USAGE:$0{start|stop|status|restart}" ;; esac
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章